├── .gitignore ├── LICENSE ├── Xresources ├── barpyrus.py ├── bat-config ├── ccache.conf ├── dconf-dump.ini ├── doom ├── config.el ├── init.el └── packages.el ├── dunstrc ├── evrouterrc ├── gdbinit ├── git ├── config ├── gitattributes └── gitignore ├── gtk-3.0-settings.ini ├── gtkrc-2.0 ├── herbstluftwm └── autostart ├── keepmenu-config.ini ├── khal_config ├── kitty.conf ├── latexmkrc ├── lsd-config.yml ├── mimeapps.list ├── mpv ├── input.conf └── mpv.conf ├── mutt ├── mailcap ├── muttrc └── sig ├── networkmanager-dmenu-config.ini ├── newsboat-config ├── offlineimap.conf ├── openhsr-connect.yaml ├── picom.conf ├── profile ├── psqlrc ├── pypoetry_config.yaml ├── qt5ct.conf ├── qutebrowser ├── config.py └── gruvbox.py ├── ranger-rc.conf ├── rofi-config.rasi ├── spacemacs ├── startup.py ├── udiskie-config.yml ├── utf8db ├── vdirsyncer_config ├── vimrc ├── vscode ├── custom-style.css ├── keybindings.jsonc └── settings.jsonc ├── yay-config.json ├── ytdl-config ├── zathurarc └── zshrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/Xresources -------------------------------------------------------------------------------- /barpyrus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/barpyrus.py -------------------------------------------------------------------------------- /bat-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/bat-config -------------------------------------------------------------------------------- /ccache.conf: -------------------------------------------------------------------------------- 1 | max_size = 128.0G 2 | -------------------------------------------------------------------------------- /dconf-dump.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/dconf-dump.ini -------------------------------------------------------------------------------- /doom/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/doom/config.el -------------------------------------------------------------------------------- /doom/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/doom/init.el -------------------------------------------------------------------------------- /doom/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/doom/packages.el -------------------------------------------------------------------------------- /dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/dunstrc -------------------------------------------------------------------------------- /evrouterrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/evrouterrc -------------------------------------------------------------------------------- /gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/gdbinit -------------------------------------------------------------------------------- /git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/git/config -------------------------------------------------------------------------------- /git/gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/git/gitattributes -------------------------------------------------------------------------------- /git/gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /gtk-3.0-settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/gtk-3.0-settings.ini -------------------------------------------------------------------------------- /gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/gtkrc-2.0 -------------------------------------------------------------------------------- /herbstluftwm/autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/herbstluftwm/autostart -------------------------------------------------------------------------------- /keepmenu-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/keepmenu-config.ini -------------------------------------------------------------------------------- /khal_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/khal_config -------------------------------------------------------------------------------- /kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/kitty.conf -------------------------------------------------------------------------------- /latexmkrc: -------------------------------------------------------------------------------- 1 | $pdf_previewer = 'zathura' 2 | -------------------------------------------------------------------------------- /lsd-config.yml: -------------------------------------------------------------------------------- 1 | icons: 2 | separator: ' ' 3 | -------------------------------------------------------------------------------- /mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/mimeapps.list -------------------------------------------------------------------------------- /mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/mpv/input.conf -------------------------------------------------------------------------------- /mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/mpv/mpv.conf -------------------------------------------------------------------------------- /mutt/mailcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/mutt/mailcap -------------------------------------------------------------------------------- /mutt/muttrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/mutt/muttrc -------------------------------------------------------------------------------- /mutt/sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/mutt/sig -------------------------------------------------------------------------------- /networkmanager-dmenu-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/networkmanager-dmenu-config.ini -------------------------------------------------------------------------------- /newsboat-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/newsboat-config -------------------------------------------------------------------------------- /offlineimap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/offlineimap.conf -------------------------------------------------------------------------------- /openhsr-connect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/openhsr-connect.yaml -------------------------------------------------------------------------------- /picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/picom.conf -------------------------------------------------------------------------------- /profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/profile -------------------------------------------------------------------------------- /psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/psqlrc -------------------------------------------------------------------------------- /pypoetry_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/pypoetry_config.yaml -------------------------------------------------------------------------------- /qt5ct.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/qt5ct.conf -------------------------------------------------------------------------------- /qutebrowser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/qutebrowser/config.py -------------------------------------------------------------------------------- /qutebrowser/gruvbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/qutebrowser/gruvbox.py -------------------------------------------------------------------------------- /ranger-rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/ranger-rc.conf -------------------------------------------------------------------------------- /rofi-config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/rofi-config.rasi -------------------------------------------------------------------------------- /spacemacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/spacemacs -------------------------------------------------------------------------------- /startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/startup.py -------------------------------------------------------------------------------- /udiskie-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/udiskie-config.yml -------------------------------------------------------------------------------- /utf8db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/utf8db -------------------------------------------------------------------------------- /vdirsyncer_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/vdirsyncer_config -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/vimrc -------------------------------------------------------------------------------- /vscode/custom-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/vscode/custom-style.css -------------------------------------------------------------------------------- /vscode/keybindings.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/vscode/keybindings.jsonc -------------------------------------------------------------------------------- /vscode/settings.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/vscode/settings.jsonc -------------------------------------------------------------------------------- /yay-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/yay-config.json -------------------------------------------------------------------------------- /ytdl-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/ytdl-config -------------------------------------------------------------------------------- /zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/zathurarc -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Compiler/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------