├── .ansible-lint ├── .gitignore ├── .pre-commit-config.yaml ├── .yamllint ├── README.md ├── ansible.cfg ├── group_vars ├── all.yml └── secrets.yml ├── host_vars └── meredith.yml ├── inventory.ini ├── roles ├── fish │ ├── files │ │ ├── colors.fish │ │ ├── config.fish │ │ ├── functions │ │ │ ├── fish_prompt.fish │ │ │ └── multi_user_brew.fish │ │ └── shortcuts.fish │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── conf.d │ │ └── bw_session.fish ├── karabiner │ ├── files │ │ ├── assets │ │ │ └── complex_modifications │ │ │ │ ├── 1618508061.json │ │ │ │ ├── 1618508212.json │ │ │ │ └── CmdShiftToCmdE.json │ │ └── karabiner.json │ └── tasks │ │ └── main.yml ├── kitty │ ├── files │ │ └── kitty.conf │ └── tasks │ │ └── main.yml ├── neofetch │ ├── files │ │ └── config.conf │ └── tasks │ │ └── main.yml ├── nvim │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── after │ │ │ └── plugin │ │ │ │ ├── autopairs.rc.lua │ │ │ │ ├── barbar.rc.lua │ │ │ │ ├── coc-explorer.rc.vim │ │ │ │ ├── coc.rc.vim │ │ │ │ ├── fugitive.rc.vim │ │ │ │ ├── lualine.rc.lua │ │ │ │ ├── nord.rc.lua │ │ │ │ ├── startify.rc.vim │ │ │ │ ├── telescope.rc.vim │ │ │ │ └── web-devicons.vim │ │ ├── coc-settings.json │ │ ├── init.vim │ │ ├── macos.vim │ │ └── plug.vim │ └── tasks │ │ └── main.yml ├── system │ ├── defaults │ │ └── main.yml │ └── tasks │ │ └── main.yml └── tmux │ ├── defaults │ └── main.yml │ ├── files │ └── tmux.conf │ └── tasks │ └── main.yml ├── run.yml └── vault_password_file /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .fact_cache/ 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/.yamllint -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/ansible.cfg -------------------------------------------------------------------------------- /group_vars/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/group_vars/all.yml -------------------------------------------------------------------------------- /group_vars/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/group_vars/secrets.yml -------------------------------------------------------------------------------- /host_vars/meredith.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/host_vars/meredith.yml -------------------------------------------------------------------------------- /inventory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/inventory.ini -------------------------------------------------------------------------------- /roles/fish/files/colors.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/fish/files/colors.fish -------------------------------------------------------------------------------- /roles/fish/files/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/fish/files/config.fish -------------------------------------------------------------------------------- /roles/fish/files/functions/fish_prompt.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/fish/files/functions/fish_prompt.fish -------------------------------------------------------------------------------- /roles/fish/files/functions/multi_user_brew.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/fish/files/functions/multi_user_brew.fish -------------------------------------------------------------------------------- /roles/fish/files/shortcuts.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/fish/files/shortcuts.fish -------------------------------------------------------------------------------- /roles/fish/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/fish/tasks/main.yml -------------------------------------------------------------------------------- /roles/fish/templates/conf.d/bw_session.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/fish/templates/conf.d/bw_session.fish -------------------------------------------------------------------------------- /roles/karabiner/files/assets/complex_modifications/1618508061.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/karabiner/files/assets/complex_modifications/1618508061.json -------------------------------------------------------------------------------- /roles/karabiner/files/assets/complex_modifications/1618508212.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/karabiner/files/assets/complex_modifications/1618508212.json -------------------------------------------------------------------------------- /roles/karabiner/files/assets/complex_modifications/CmdShiftToCmdE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/karabiner/files/assets/complex_modifications/CmdShiftToCmdE.json -------------------------------------------------------------------------------- /roles/karabiner/files/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/karabiner/files/karabiner.json -------------------------------------------------------------------------------- /roles/karabiner/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/karabiner/tasks/main.yml -------------------------------------------------------------------------------- /roles/kitty/files/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/kitty/files/kitty.conf -------------------------------------------------------------------------------- /roles/kitty/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/kitty/tasks/main.yml -------------------------------------------------------------------------------- /roles/neofetch/files/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/neofetch/files/config.conf -------------------------------------------------------------------------------- /roles/neofetch/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/neofetch/tasks/main.yml -------------------------------------------------------------------------------- /roles/nvim/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/defaults/main.yml -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/autopairs.rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/after/plugin/autopairs.rc.lua -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/barbar.rc.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/coc-explorer.rc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/after/plugin/coc-explorer.rc.vim -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/coc.rc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/after/plugin/coc.rc.vim -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/fugitive.rc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/after/plugin/fugitive.rc.vim -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/lualine.rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/after/plugin/lualine.rc.lua -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/nord.rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/after/plugin/nord.rc.lua -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/startify.rc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/after/plugin/startify.rc.vim -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/telescope.rc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/after/plugin/telescope.rc.vim -------------------------------------------------------------------------------- /roles/nvim/files/after/plugin/web-devicons.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/after/plugin/web-devicons.vim -------------------------------------------------------------------------------- /roles/nvim/files/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/coc-settings.json -------------------------------------------------------------------------------- /roles/nvim/files/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/init.vim -------------------------------------------------------------------------------- /roles/nvim/files/macos.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/macos.vim -------------------------------------------------------------------------------- /roles/nvim/files/plug.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/files/plug.vim -------------------------------------------------------------------------------- /roles/nvim/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/nvim/tasks/main.yml -------------------------------------------------------------------------------- /roles/system/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/system/defaults/main.yml -------------------------------------------------------------------------------- /roles/system/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/system/tasks/main.yml -------------------------------------------------------------------------------- /roles/tmux/defaults/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roles/tmux/files/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/tmux/files/tmux.conf -------------------------------------------------------------------------------- /roles/tmux/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/roles/tmux/tasks/main.yml -------------------------------------------------------------------------------- /run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/dotfiles/HEAD/run.yml -------------------------------------------------------------------------------- /vault_password_file: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | bw get password "Ansible Vault – dotfiles" 3 | --------------------------------------------------------------------------------