├── README.md ├── berry ├── README.md ├── autostart └── sxhkdrc ├── compton └── compton.conf ├── dmenu ├── README.md └── dmenu_squash ├── dunst └── dunstrc ├── fonts └── fonts.conf ├── macOS ├── README.md ├── alacritty │ └── alacritty.yml ├── boot │ └── 40_custom ├── nvim │ ├── app.vim │ ├── auto.vim │ ├── base.vim │ ├── init.vim │ ├── map.vim │ ├── plug.vim │ └── syn.vim ├── tmux │ └── .tmux.conf └── zsh │ └── .zshrc ├── ncmpcpp ├── README.md └── config ├── nvim ├── LICENSE ├── README.md ├── init.lua ├── lazy-lock.json ├── lazyvim.json ├── lua │ ├── config │ │ ├── autocmds.lua │ │ ├── keymaps.lua │ │ ├── lazy.lua │ │ └── options.lua │ └── plugins │ │ ├── colorscheme.lua │ │ ├── example.lua │ │ └── term.lua └── stylua.toml ├── qutebrowser ├── autoconfig.yml └── config.py ├── redshift └── redshift.conf ├── scripts ├── README.md ├── bbar ├── blox ├── minibar ├── sbar ├── simplebar ├── sysinfo ├── tinybar └── toggle_bar ├── tmux ├── .tmux.conf └── README.md ├── x ├── .Xresources ├── .xbindkeysrc ├── .xinitrc ├── README.md ├── urxvt └── xft └── zsh ├── .zshrc └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /berry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/berry/README.md -------------------------------------------------------------------------------- /berry/autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/berry/autostart -------------------------------------------------------------------------------- /berry/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/berry/sxhkdrc -------------------------------------------------------------------------------- /compton/compton.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/compton/compton.conf -------------------------------------------------------------------------------- /dmenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/dmenu/README.md -------------------------------------------------------------------------------- /dmenu/dmenu_squash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/dmenu/dmenu_squash -------------------------------------------------------------------------------- /dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/dunst/dunstrc -------------------------------------------------------------------------------- /fonts/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/fonts/fonts.conf -------------------------------------------------------------------------------- /macOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/README.md -------------------------------------------------------------------------------- /macOS/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/alacritty/alacritty.yml -------------------------------------------------------------------------------- /macOS/boot/40_custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/boot/40_custom -------------------------------------------------------------------------------- /macOS/nvim/app.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/nvim/app.vim -------------------------------------------------------------------------------- /macOS/nvim/auto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/nvim/auto.vim -------------------------------------------------------------------------------- /macOS/nvim/base.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/nvim/base.vim -------------------------------------------------------------------------------- /macOS/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/nvim/init.vim -------------------------------------------------------------------------------- /macOS/nvim/map.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/nvim/map.vim -------------------------------------------------------------------------------- /macOS/nvim/plug.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/nvim/plug.vim -------------------------------------------------------------------------------- /macOS/nvim/syn.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/nvim/syn.vim -------------------------------------------------------------------------------- /macOS/tmux/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/tmux/.tmux.conf -------------------------------------------------------------------------------- /macOS/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/macOS/zsh/.zshrc -------------------------------------------------------------------------------- /ncmpcpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/ncmpcpp/README.md -------------------------------------------------------------------------------- /ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/ncmpcpp/config -------------------------------------------------------------------------------- /nvim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/LICENSE -------------------------------------------------------------------------------- /nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/README.md -------------------------------------------------------------------------------- /nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/init.lua -------------------------------------------------------------------------------- /nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/lazy-lock.json -------------------------------------------------------------------------------- /nvim/lazyvim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/lazyvim.json -------------------------------------------------------------------------------- /nvim/lua/config/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/lua/config/autocmds.lua -------------------------------------------------------------------------------- /nvim/lua/config/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/lua/config/keymaps.lua -------------------------------------------------------------------------------- /nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /nvim/lua/config/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/lua/config/options.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/colorscheme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/lua/plugins/colorscheme.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/lua/plugins/example.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/term.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/lua/plugins/term.lua -------------------------------------------------------------------------------- /nvim/stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/nvim/stylua.toml -------------------------------------------------------------------------------- /qutebrowser/autoconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/qutebrowser/autoconfig.yml -------------------------------------------------------------------------------- /qutebrowser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/qutebrowser/config.py -------------------------------------------------------------------------------- /redshift/redshift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/redshift/redshift.conf -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/bbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/scripts/bbar -------------------------------------------------------------------------------- /scripts/blox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/scripts/blox -------------------------------------------------------------------------------- /scripts/minibar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/scripts/minibar -------------------------------------------------------------------------------- /scripts/sbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/scripts/sbar -------------------------------------------------------------------------------- /scripts/simplebar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/scripts/simplebar -------------------------------------------------------------------------------- /scripts/sysinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/scripts/sysinfo -------------------------------------------------------------------------------- /scripts/tinybar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/scripts/tinybar -------------------------------------------------------------------------------- /scripts/toggle_bar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/scripts/toggle_bar -------------------------------------------------------------------------------- /tmux/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/tmux/.tmux.conf -------------------------------------------------------------------------------- /tmux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/tmux/README.md -------------------------------------------------------------------------------- /x/.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/x/.Xresources -------------------------------------------------------------------------------- /x/.xbindkeysrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/x/.xbindkeysrc -------------------------------------------------------------------------------- /x/.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/x/.xinitrc -------------------------------------------------------------------------------- /x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/x/README.md -------------------------------------------------------------------------------- /x/urxvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/x/urxvt -------------------------------------------------------------------------------- /x/xft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/x/xft -------------------------------------------------------------------------------- /zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/zsh/.zshrc -------------------------------------------------------------------------------- /zsh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLErvin/dotfiles/HEAD/zsh/README.md --------------------------------------------------------------------------------