set filetype to yaml.ansible for all yml files

This commit is contained in:
Matthew Stobbs
2025-02-09 18:24:38 -07:00
parent 80af799c47
commit c9e5f7f9ab
130 changed files with 138 additions and 6 deletions

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: "check if task for {{pkg}} exists" - name: "check if task for {{pkg}} exists"
ansible.builtin.command: "test -f {{role_path}}/tasks/pkgs/{{ pkg }}.yml" ansible.builtin.command: "test -f {{role_path}}/tasks/pkgs/{{ pkg }}.yml"

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: build and install alacritty - name: build and install alacritty
ansible.builtin.command: ansible.builtin.command:
@@ -8,6 +9,6 @@
- "{{ pkgconfig_alacritty.install_prefix }}" - "{{ pkgconfig_alacritty.install_prefix }}"
- --git - --git
- "{{ pkgconfig_alacritty.git_repo }}" - "{{ pkgconfig_alacritty.git_repo }}"
- --tag - --tag
- "v{{ pkgconfig_alacritty.version }}" - "v{{ pkgconfig_alacritty.version }}"
become: true become: true

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: Install bitwarden appimage - name: Install bitwarden appimage
blocK: blocK:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: build ghostty from source - name: build ghostty from source
block: block:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: check go version - name: check go version
ansible.builtin.command: ansible.builtin.command:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: set needed variables lua language server - name: set needed variables lua language server
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.set_fact: - ansible.builtin.set_fact:
neovide_cargoversioned: neovide_cargoversioned:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: build neovim from source - name: build neovim from source
block: block:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
# Install nerdfonts for each platform # Install nerdfonts for each platform
--- ---
- name: linux installation - name: linux installation
@@ -7,12 +8,12 @@
ansible.builtin.set_fact: ansible.builtin.set_fact:
nerdfonts_install_path: "{{ lookup('ansible.builtin.env', 'HOME') }}/.local/share/fonts" nerdfonts_install_path: "{{ lookup('ansible.builtin.env', 'HOME') }}/.local/share/fonts"
when: not pkgconfig_nerdfonts.system_install when: not pkgconfig_nerdfonts.system_install
- name: set install path for system wide installs - name: set install path for system wide installs
ansible.builtin.set_fact: ansible.builtin.set_fact:
nerdfonts_install_path: "/usr/local/share/fonts" nerdfonts_install_path: "/usr/local/share/fonts"
when: pkgconfig_nerdfonts.system_install when: pkgconfig_nerdfonts.system_install
- name: create nerdfonts directories - name: create nerdfonts directories
ansible.builtin.file: ansible.builtin.file:
path: "{{ nerdfonts_install_path }}/{{ font }}" path: "{{ nerdfonts_install_path }}/{{ font }}"
@@ -22,7 +23,7 @@
loop_control: loop_control:
loop_var: font loop_var: font
register: nerdfont_result register: nerdfont_result
- name: Download and extract nerdfonts - name: Download and extract nerdfonts
ansible.builtin.unarchive: ansible.builtin.unarchive:
creates: "{{ nerdfonts_install_path }}/{{ font }}/README.md" creates: "{{ nerdfonts_install_path }}/{{ font }}/README.md"

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: nushell.yml file: nushell.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: download zig archive - name: download zig archive
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: download zls archive - name: download zls archive
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: generate package installation lists - name: generate package installation lists
ansible.builtin.include_tasks: ansible.builtin.include_tasks:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
# TODO: implement # TODO: implement
--- ---
- name: append to syspkgs - name: append to syspkgs

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/go.yml file: pkgs/go.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: alacritty.yml file: alacritty.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: bitwarden.yml file: bitwarden.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: linux specific install - name: linux specific install
block: block:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/go.yml file: pkgs/go.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/go.yml file: pkgs/go.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: carapace.yml file: carapace.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: "pkgs/go.yml" file: "pkgs/go.yml"

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/go.yml file: pkgs/go.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: linux specific - name: linux specific
block: block:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.set_fact: - ansible.builtin.set_fact:
clangd: true clangd: true

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/pipx.yml file: pkgs/pipx.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
# load hashicorp configuration # load hashicorp configuration
--- ---
- name: ensure hashicorp repo is active - name: ensure hashicorp repo is active

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to gopkgs - name: append to gopkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/flatpak.yml file: pkgs/flatpak.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: "pkgs/rust.yml" file: "pkgs/rust.yml"

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: "pkgs/go.yml" file: "pkgs/go.yml"

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to syspkgs - name: append to syspkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: "pkgs/rust.yml" file: "pkgs/rust.yml"

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to syspkgs - name: append to syspkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to syspkgs - name: append to syspkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: ghostty.yml file: ghostty.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.set_fact: - ansible.builtin.set_fact:
git: true git: true

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/go.yml file: pkgs/go.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: go.yml file: go.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- block: - block:
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/go.yml file: pkgs/go.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to syspkgs - name: append to syspkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:
@@ -12,7 +13,7 @@
when: when:
- pkgconfig_rust is undefined - pkgconfig_rust is undefined
- ansbile.builtin.set_fact: - ansible.builtin.set_fact:
cargopkgs: "{{ cargopkgs + [ 'gping' ] }}" cargopkgs: "{{ cargopkgs + [ 'gping' ] }}"
when: when:
- ansible_os_family != 'Darwin' - ansible_os_family != 'Darwin'

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.set_fact: - ansible.builtin.set_fact:
hashicorp: true hashicorp: true

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- block: - block:
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: "pkgs/rust.yml" file: "pkgs/rust.yml"

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- block: - block:
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to syspkgs - name: append to syspkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: "pkgs/rust.yml" file: "pkgs/rust.yml"

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: add to syspkgs - name: add to syspkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/go.yml file: pkgs/go.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: libreoffice.yml file: libreoffice.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: lua-language-server.yml file: lua-language-server.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to syspkgs - name: append to syspkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: neovide.yml file: neovide.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: neovim.yml file: neovim.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: nerdfonts.yml file: nerdfonts.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to flatpkgs - name: append to flatpkgs
block: block:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/pipx.yml file: pkgs/pipx.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.set_fact: - ansible.builtin.set_fact:
nodejs: true nodejs: true

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: ensure hashicorp repo is active - name: ensure hashicorp repo is active
ansible.builtin.include_tasks: ansible.builtin.include_tasks:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: nushell.yml file: nushell.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: ensure hashicorp repo is active - name: ensure hashicorp repo is active
ansible.builtin.include_tasks: ansible.builtin.include_tasks:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- block: - block:
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:

View File

@@ -1,5 +1,6 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansbile.builtin.set_fact: - ansible.builtin.set_fact:
pipx: true pipx: true
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/pipx.yml file: pkgs/pipx.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.set_fact: - ansible.builtin.set_fact:
python3: true python3: true

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/go.yml file: pkgs/go.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_vars: - ansible.builtin.include_vars:
file: rust.yml file: rust.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to syspkgs - name: append to syspkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/pipx.yml file: pkgs/pipx.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: install rust and cargo - name: install rust and cargo
ansible.builtin.include_tasks: ansible.builtin.include_tasks:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- name: append to pkgs - name: append to pkgs
ansible.builtin.set_fact: ansible.builtin.set_fact:

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.set_fact: - ansible.builtin.set_fact:
tailscale: true tailscale: true

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/nodejs.yml file: pkgs/nodejs.yml

View File

@@ -1,3 +1,4 @@
# vim: set filetype=yaml.ansible :
--- ---
- ansible.builtin.include_tasks: - ansible.builtin.include_tasks:
file: pkgs/go.yml file: pkgs/go.yml

Some files were not shown because too many files have changed in this diff Show More