├── .github └── workflows │ └── stale.yml ├── .gitignore ├── Brewfile ├── Brewfile.lock.json ├── CargoFile ├── LICENSE ├── README.md ├── Yarnfile ├── _assets └── screenshots │ ├── cake16_dark.png │ ├── cake16_light.png │ ├── deus_dark.png │ ├── deus_light.png │ ├── flattened_fish.png │ ├── nord.png │ ├── snappy_one.png │ ├── snappy_two.png │ ├── solar.png │ ├── solar8_dark.png │ ├── solar8_light.png │ ├── solarized8_fish.png │ └── space.png ├── config ├── glab-cli │ └── config.yml ├── nvim │ ├── after │ │ └── ftplugin │ │ │ ├── clojure.lua │ │ │ ├── diff.lua │ │ │ ├── fugitiveblame.lua │ │ │ ├── git.lua │ │ │ ├── gitcommit.lua │ │ │ ├── gitconfig.lua │ │ │ ├── gitrebase.lua │ │ │ ├── go.lua │ │ │ ├── help.lua │ │ │ ├── html.lua │ │ │ ├── markdown.lua │ │ │ ├── patch.lua │ │ │ ├── qf.lua │ │ │ ├── rails.lua │ │ │ ├── ruby.lua │ │ │ └── sql.lua │ ├── init.lua │ ├── lua │ │ ├── autocmds.lua │ │ ├── config │ │ │ └── lazy.lua │ │ ├── general.lua │ │ ├── keymaps.lua │ │ ├── options.lua │ │ ├── plugins │ │ │ ├── autocomplete.lua │ │ │ ├── blame-nvim.lua │ │ │ ├── bufferline-nvim.lua │ │ │ ├── git.lua │ │ │ ├── kommentary.lua │ │ │ ├── modus-themes-nvim.lua │ │ │ ├── neorg.lua │ │ │ ├── nvim-lspconfig.lua │ │ │ ├── nvim-navic.lua │ │ │ ├── nvim-treesitter.lua │ │ │ ├── nvim-ufo.lua │ │ │ ├── nvimux.lua │ │ │ ├── oil-nvim.lua │ │ │ ├── telescope.lua │ │ │ ├── testing.lua │ │ │ ├── vim-bbye.lua │ │ │ ├── vim-maximizer.lua │ │ │ ├── vim-rooter.lua │ │ │ └── vim-signify.lua │ │ └── util.lua │ └── rocks.toml ├── pgcli │ └── config ├── ranger │ └── rc.conf ├── wezterm │ └── wezterm.lua └── zed │ ├── keymap.json │ ├── settings.json │ └── tasks.json ├── dircolors ├── dircolors.ansi-dark └── dircolors.bw ├── editorconfig ├── editrc ├── eslintrc ├── gitattributes ├── gitconfig ├── gitignore ├── gnupg ├── gpg-agent.conf ├── gpg.conf └── scdaemon.conf ├── inputrc ├── irbrc ├── pryrc ├── rcrc ├── ripgreprc ├── rubocop.yml ├── scripts ├── check_migrations ├── checkhosts ├── compile-zsh ├── exfat_clean ├── generate-brew-env.sh ├── install-terminfo.sh ├── install-tmux-plugins.sh ├── mermaid-ascii ├── rabo2ynab ├── rmlink.sh ├── santakiller ├── spec └── theme ├── ssh └── config ├── terminfo ├── tmux-256color.terminfo ├── xterm-256color-italic.terminfo └── xterm-256color-italic.tic ├── tmux.conf ├── zprofile ├── zsh_aliases ├── zsh_keybindings ├── zsh_prompt ├── zshenv └── zshrc /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /CargoFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/CargoFile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /Yarnfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/Yarnfile -------------------------------------------------------------------------------- /_assets/screenshots/cake16_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/cake16_dark.png -------------------------------------------------------------------------------- /_assets/screenshots/cake16_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/cake16_light.png -------------------------------------------------------------------------------- /_assets/screenshots/deus_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/deus_dark.png -------------------------------------------------------------------------------- /_assets/screenshots/deus_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/deus_light.png -------------------------------------------------------------------------------- /_assets/screenshots/flattened_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/flattened_fish.png -------------------------------------------------------------------------------- /_assets/screenshots/nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/nord.png -------------------------------------------------------------------------------- /_assets/screenshots/snappy_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/snappy_one.png -------------------------------------------------------------------------------- /_assets/screenshots/snappy_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/snappy_two.png -------------------------------------------------------------------------------- /_assets/screenshots/solar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/solar.png -------------------------------------------------------------------------------- /_assets/screenshots/solar8_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/solar8_dark.png -------------------------------------------------------------------------------- /_assets/screenshots/solar8_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/solar8_light.png -------------------------------------------------------------------------------- /_assets/screenshots/solarized8_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/solarized8_fish.png -------------------------------------------------------------------------------- /_assets/screenshots/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/_assets/screenshots/space.png -------------------------------------------------------------------------------- /config/glab-cli/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/glab-cli/config.yml -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/clojure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/clojure.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/diff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/diff.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/fugitiveblame.lua: -------------------------------------------------------------------------------- 1 | vim.call('general#MarkMargin', 0) 2 | -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/git.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/git.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/gitcommit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/gitcommit.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/gitconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/gitconfig.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/gitrebase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/gitrebase.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/go.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/go.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/help.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/help.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/html.lua: -------------------------------------------------------------------------------- 1 | vim.opt_local.spell = true 2 | -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/markdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/markdown.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/patch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/patch.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/qf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/qf.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/rails.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/rails.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/ruby.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/ruby.lua -------------------------------------------------------------------------------- /config/nvim/after/ftplugin/sql.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/after/ftplugin/sql.lua -------------------------------------------------------------------------------- /config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/init.lua -------------------------------------------------------------------------------- /config/nvim/lua/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/autocmds.lua -------------------------------------------------------------------------------- /config/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /config/nvim/lua/general.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/general.lua -------------------------------------------------------------------------------- /config/nvim/lua/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/keymaps.lua -------------------------------------------------------------------------------- /config/nvim/lua/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/options.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/autocomplete.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/autocomplete.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/blame-nvim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/blame-nvim.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/bufferline-nvim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/bufferline-nvim.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/git.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/git.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/kommentary.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/kommentary.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/modus-themes-nvim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/modus-themes-nvim.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/neorg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/neorg.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/nvim-lspconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/nvim-lspconfig.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/nvim-navic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/nvim-navic.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/nvim-treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/nvim-treesitter.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/nvim-ufo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/nvim-ufo.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/nvimux.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/nvimux.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/oil-nvim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/oil-nvim.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/telescope.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/testing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/testing.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/vim-bbye.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/vim-bbye.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/vim-maximizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/vim-maximizer.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/vim-rooter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/vim-rooter.lua -------------------------------------------------------------------------------- /config/nvim/lua/plugins/vim-signify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/plugins/vim-signify.lua -------------------------------------------------------------------------------- /config/nvim/lua/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/lua/util.lua -------------------------------------------------------------------------------- /config/nvim/rocks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/nvim/rocks.toml -------------------------------------------------------------------------------- /config/pgcli/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/pgcli/config -------------------------------------------------------------------------------- /config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/ranger/rc.conf -------------------------------------------------------------------------------- /config/wezterm/wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/wezterm/wezterm.lua -------------------------------------------------------------------------------- /config/zed/keymap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/zed/keymap.json -------------------------------------------------------------------------------- /config/zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/zed/settings.json -------------------------------------------------------------------------------- /config/zed/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/config/zed/tasks.json -------------------------------------------------------------------------------- /dircolors/dircolors.ansi-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/dircolors/dircolors.ansi-dark -------------------------------------------------------------------------------- /dircolors/dircolors.bw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/dircolors/dircolors.bw -------------------------------------------------------------------------------- /editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/editorconfig -------------------------------------------------------------------------------- /editrc: -------------------------------------------------------------------------------- 1 | bind -v 2 | -------------------------------------------------------------------------------- /eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/eslintrc -------------------------------------------------------------------------------- /gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/gitattributes -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/gitconfig -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/gitignore -------------------------------------------------------------------------------- /gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /gnupg/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/gnupg/gpg.conf -------------------------------------------------------------------------------- /gnupg/scdaemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/gnupg/scdaemon.conf -------------------------------------------------------------------------------- /inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/inputrc -------------------------------------------------------------------------------- /irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/irbrc -------------------------------------------------------------------------------- /pryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/pryrc -------------------------------------------------------------------------------- /rcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/rcrc -------------------------------------------------------------------------------- /ripgreprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/ripgreprc -------------------------------------------------------------------------------- /rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/rubocop.yml -------------------------------------------------------------------------------- /scripts/check_migrations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/check_migrations -------------------------------------------------------------------------------- /scripts/checkhosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/checkhosts -------------------------------------------------------------------------------- /scripts/compile-zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/compile-zsh -------------------------------------------------------------------------------- /scripts/exfat_clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/exfat_clean -------------------------------------------------------------------------------- /scripts/generate-brew-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/generate-brew-env.sh -------------------------------------------------------------------------------- /scripts/install-terminfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/install-terminfo.sh -------------------------------------------------------------------------------- /scripts/install-tmux-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/install-tmux-plugins.sh -------------------------------------------------------------------------------- /scripts/mermaid-ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/mermaid-ascii -------------------------------------------------------------------------------- /scripts/rabo2ynab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/rabo2ynab -------------------------------------------------------------------------------- /scripts/rmlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/rmlink.sh -------------------------------------------------------------------------------- /scripts/santakiller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/santakiller -------------------------------------------------------------------------------- /scripts/spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/spec -------------------------------------------------------------------------------- /scripts/theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/scripts/theme -------------------------------------------------------------------------------- /ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/ssh/config -------------------------------------------------------------------------------- /terminfo/tmux-256color.terminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/terminfo/tmux-256color.terminfo -------------------------------------------------------------------------------- /terminfo/xterm-256color-italic.terminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/terminfo/xterm-256color-italic.terminfo -------------------------------------------------------------------------------- /terminfo/xterm-256color-italic.tic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/terminfo/xterm-256color-italic.tic -------------------------------------------------------------------------------- /tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/tmux.conf -------------------------------------------------------------------------------- /zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/zprofile -------------------------------------------------------------------------------- /zsh_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/zsh_aliases -------------------------------------------------------------------------------- /zsh_keybindings: -------------------------------------------------------------------------------- 1 | bindkey '^e' autosuggest-accept 2 | -------------------------------------------------------------------------------- /zsh_prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/zsh_prompt -------------------------------------------------------------------------------- /zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/zshenv -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderjeurissen/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------