├── .gitconfig ├── .gitignore ├── .p10k.zsh ├── .vimrc ├── .zshenv ├── README.md ├── cleanInstall ├── Brewfile ├── fonts │ ├── Fira Code Bold Nerd Font Complete Mono.ttf │ ├── Fira Code Light Nerd Font Complete Mono.ttf │ ├── Fira Code Medium Nerd Font Complete Mono.ttf │ ├── Fira Code Regular Nerd Font Complete Mono.ttf │ └── Fira Code Retina Nerd Font Complete Mono.ttf ├── hosts_additions └── macOS_settings ├── cleanMacOsInstallation.sh ├── config ├── karabiner │ └── karabiner.json ├── nvim │ ├── .gitignore │ ├── .neoconf.json │ ├── LICENSE │ ├── README.md │ ├── init.lua │ ├── lazy-lock.json │ ├── lazyvim.json │ ├── lua │ │ ├── config │ │ │ ├── autocmds.lua │ │ │ ├── keymaps.lua │ │ │ ├── lazy.lua │ │ │ └── options.lua │ │ └── plugins │ │ │ ├── dashboard.lua │ │ │ └── example.lua │ └── stylua.toml ├── starship.toml └── zsh │ ├── .zcompdump │ ├── .zshrc │ ├── aliases │ ├── docker-aliases.zsh │ ├── generic-aliases.zsh │ ├── git-aliases.zsh │ ├── macos-aliases.zsh │ ├── maven-aliases.zsh │ ├── npm-aliases.zsh │ └── terraform-aliases.zsh │ ├── anybar-integration.zsh │ ├── dependencies.zsh │ ├── detect-os.zsh │ ├── environment.zsh │ ├── functions.zsh │ ├── history.zsh │ ├── keybindings.zsh │ └── settings.zsh ├── gnupg └── gpg-agent.conf ├── hammerspoon ├── app-management.lua ├── caffeine.lua ├── double-shift.lua ├── emoji.lua ├── hyper.lua ├── init.lua ├── modal-tools.lua └── window-management.lua ├── install.sh └── vim └── install.sh /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | .DS_Store 4 | 5 | config/zsh/aliases/private* 6 | -------------------------------------------------------------------------------- /.p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/.p10k.zsh -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/.vimrc -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/.zshenv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /cleanInstall/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/cleanInstall/Brewfile -------------------------------------------------------------------------------- /cleanInstall/fonts/Fira Code Bold Nerd Font Complete Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/cleanInstall/fonts/Fira Code Bold Nerd Font Complete Mono.ttf -------------------------------------------------------------------------------- /cleanInstall/fonts/Fira Code Light Nerd Font Complete Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/cleanInstall/fonts/Fira Code Light Nerd Font Complete Mono.ttf -------------------------------------------------------------------------------- /cleanInstall/fonts/Fira Code Medium Nerd Font Complete Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/cleanInstall/fonts/Fira Code Medium Nerd Font Complete Mono.ttf -------------------------------------------------------------------------------- /cleanInstall/fonts/Fira Code Regular Nerd Font Complete Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/cleanInstall/fonts/Fira Code Regular Nerd Font Complete Mono.ttf -------------------------------------------------------------------------------- /cleanInstall/fonts/Fira Code Retina Nerd Font Complete Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/cleanInstall/fonts/Fira Code Retina Nerd Font Complete Mono.ttf -------------------------------------------------------------------------------- /cleanInstall/hosts_additions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/cleanInstall/hosts_additions -------------------------------------------------------------------------------- /cleanInstall/macOS_settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/cleanInstall/macOS_settings -------------------------------------------------------------------------------- /cleanMacOsInstallation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/cleanMacOsInstallation.sh -------------------------------------------------------------------------------- /config/karabiner/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/karabiner/karabiner.json -------------------------------------------------------------------------------- /config/nvim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/.gitignore -------------------------------------------------------------------------------- /config/nvim/.neoconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/.neoconf.json -------------------------------------------------------------------------------- /config/nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/LICENSE -------------------------------------------------------------------------------- /config/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/README.md -------------------------------------------------------------------------------- /config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/init.lua -------------------------------------------------------------------------------- /config/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/lazy-lock.json -------------------------------------------------------------------------------- /config/nvim/lazyvim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/lazyvim.json -------------------------------------------------------------------------------- /config/nvim/lua/config/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/lua/config/autocmds.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/dashboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/lua/plugins/dashboard.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/lua/plugins/example.lua -------------------------------------------------------------------------------- /config/nvim/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/nvim/stylua.toml -------------------------------------------------------------------------------- /config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/starship.toml -------------------------------------------------------------------------------- /config/zsh/.zcompdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/.zcompdump -------------------------------------------------------------------------------- /config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/.zshrc -------------------------------------------------------------------------------- /config/zsh/aliases/docker-aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/aliases/docker-aliases.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/generic-aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/aliases/generic-aliases.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/git-aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/aliases/git-aliases.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/macos-aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/aliases/macos-aliases.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/maven-aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/aliases/maven-aliases.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/npm-aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/aliases/npm-aliases.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/terraform-aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/aliases/terraform-aliases.zsh -------------------------------------------------------------------------------- /config/zsh/anybar-integration.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/anybar-integration.zsh -------------------------------------------------------------------------------- /config/zsh/dependencies.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/dependencies.zsh -------------------------------------------------------------------------------- /config/zsh/detect-os.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/detect-os.zsh -------------------------------------------------------------------------------- /config/zsh/environment.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/environment.zsh -------------------------------------------------------------------------------- /config/zsh/functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/functions.zsh -------------------------------------------------------------------------------- /config/zsh/history.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/history.zsh -------------------------------------------------------------------------------- /config/zsh/keybindings.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/keybindings.zsh -------------------------------------------------------------------------------- /config/zsh/settings.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/config/zsh/settings.zsh -------------------------------------------------------------------------------- /gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /hammerspoon/app-management.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/hammerspoon/app-management.lua -------------------------------------------------------------------------------- /hammerspoon/caffeine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/hammerspoon/caffeine.lua -------------------------------------------------------------------------------- /hammerspoon/double-shift.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/hammerspoon/double-shift.lua -------------------------------------------------------------------------------- /hammerspoon/emoji.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/hammerspoon/emoji.lua -------------------------------------------------------------------------------- /hammerspoon/hyper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/hammerspoon/hyper.lua -------------------------------------------------------------------------------- /hammerspoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/hammerspoon/init.lua -------------------------------------------------------------------------------- /hammerspoon/modal-tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/hammerspoon/modal-tools.lua -------------------------------------------------------------------------------- /hammerspoon/window-management.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/hammerspoon/window-management.lua -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/install.sh -------------------------------------------------------------------------------- /vim/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhkuperus/dotfiles/HEAD/vim/install.sh --------------------------------------------------------------------------------