├── .gitignore ├── .ignore ├── README.md ├── dotfiles ├── X11 │ ├── .config │ │ └── X11 │ │ │ ├── xinitrc │ │ │ └── xresources │ ├── .profile │ └── .xprofile ├── compton │ └── .config │ │ └── compton │ │ ├── compton.conf │ │ └── compton.conf.backup ├── dot.sh ├── dunst │ └── .config │ │ └── dunst │ │ └── dunstrc ├── genshortcuts │ └── .config │ │ ├── aliasrc │ │ └── genshortcuts │ │ └── dirsrc ├── gtk │ └── .config │ │ ├── gtk-2.0 │ │ ├── gtkfilechooser.ini │ │ └── gtkrc │ │ └── gtk-3.0 │ │ └── settings.ini ├── htop │ └── .config │ │ └── htop │ │ └── htoprc ├── lf │ └── .config │ │ └── lf │ │ ├── commands │ │ ├── lfrc │ │ ├── mappings │ │ ├── scripts │ │ ├── clear │ │ ├── draw │ │ ├── lfrun │ │ └── preview │ │ └── settings ├── mpd │ └── .config │ │ └── mpd │ │ └── mpd.conf ├── mpv │ └── .config │ │ └── mpv │ │ └── mpv.conf ├── ncmpcpp │ └── .config │ │ └── ncmpcpp │ │ ├── bindings │ │ └── config ├── neovim │ └── .config │ │ └── nvim │ │ ├── after │ │ └── syntax │ │ │ └── vimwiki.vim │ │ ├── init.lua │ │ ├── lua │ │ ├── configs │ │ │ ├── chadtree.lua │ │ │ ├── completion.lua │ │ │ ├── init.lua │ │ │ ├── subversive.lua │ │ │ ├── taskwiki.lua │ │ │ ├── treesitter.lua │ │ │ ├── ultisnips.lua │ │ │ ├── vimtex.lua │ │ │ └── vimwiki.lua │ │ ├── mappings.lua │ │ ├── plugins.lua │ │ ├── settings.lua │ │ └── utils.lua │ │ └── snips │ │ ├── all.snippets │ │ ├── css.snippets │ │ ├── html.snippets │ │ ├── javascript.snippets │ │ ├── sh.snippets │ │ ├── snippets.snippets │ │ ├── tex.snippets │ │ ├── vimwiki.snippets │ │ └── xml.snippets ├── newsboat │ └── .config │ │ └── newsboat │ │ └── config ├── picom │ └── .config │ │ └── picom │ │ └── picom.conf ├── pistol │ └── .config │ │ └── pistol │ │ └── pistol.conf ├── qt │ └── .local │ │ └── share │ │ └── icons │ │ └── default │ │ └── index.theme ├── sys-portage │ └── etc │ │ └── portage │ │ ├── make.conf │ │ └── make.conf │ │ ├── package.accept_keywords │ │ └── package.accept_keywords │ │ ├── package.mask │ │ └── package.mask │ │ ├── package.use │ │ ├── net-misc │ │ │ └── networkmanager.use │ │ ├── package.use │ │ └── x11-base │ │ │ └── xorg-server.use │ │ └── repos.conf │ │ ├── eselect-repo.conf │ │ └── gentoo.conf ├── tmux │ └── .config │ │ └── tmux │ │ └── .tmux.conf ├── transmission-daemon │ └── .config │ │ └── transmission-daemon │ │ └── settings.json ├── tremc │ └── .config │ │ └── tremc │ │ └── settings.cfg ├── vim │ └── .config │ │ └── vim │ │ └── vimrc ├── xdg-utils │ ├── .config │ │ └── mimeapps.list │ └── .local │ │ └── share │ │ └── applications │ │ ├── nvim.desktop │ │ ├── torrent.desktop │ │ └── zathura.desktop ├── zathura │ └── .config │ │ └── zathura │ │ └── zathurarc └── zsh │ ├── .config │ └── zsh │ │ ├── .zprofile │ │ ├── .zshrc │ │ └── p10k.zsh │ └── .zshenv ├── hooks └── post-merge ├── previews ├── desktop.png ├── zsh-fzf-integration.gif ├── zsh-menu-complete.gif ├── zsh-notification.png └── zsh-syntax-highlighting.png └── setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /dotfiles/X11/.config/X11/xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/X11/.config/X11/xinitrc -------------------------------------------------------------------------------- /dotfiles/X11/.config/X11/xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/X11/.config/X11/xresources -------------------------------------------------------------------------------- /dotfiles/X11/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/X11/.profile -------------------------------------------------------------------------------- /dotfiles/X11/.xprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/X11/.xprofile -------------------------------------------------------------------------------- /dotfiles/compton/.config/compton/compton.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/compton/.config/compton/compton.conf -------------------------------------------------------------------------------- /dotfiles/compton/.config/compton/compton.conf.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/compton/.config/compton/compton.conf.backup -------------------------------------------------------------------------------- /dotfiles/dot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/dot.sh -------------------------------------------------------------------------------- /dotfiles/dunst/.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/dunst/.config/dunst/dunstrc -------------------------------------------------------------------------------- /dotfiles/genshortcuts/.config/aliasrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/genshortcuts/.config/aliasrc -------------------------------------------------------------------------------- /dotfiles/genshortcuts/.config/genshortcuts/dirsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/genshortcuts/.config/genshortcuts/dirsrc -------------------------------------------------------------------------------- /dotfiles/gtk/.config/gtk-2.0/gtkfilechooser.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/gtk/.config/gtk-2.0/gtkfilechooser.ini -------------------------------------------------------------------------------- /dotfiles/gtk/.config/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/gtk/.config/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /dotfiles/gtk/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/gtk/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /dotfiles/htop/.config/htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/htop/.config/htop/htoprc -------------------------------------------------------------------------------- /dotfiles/lf/.config/lf/commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/lf/.config/lf/commands -------------------------------------------------------------------------------- /dotfiles/lf/.config/lf/lfrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/lf/.config/lf/lfrc -------------------------------------------------------------------------------- /dotfiles/lf/.config/lf/mappings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/lf/.config/lf/mappings -------------------------------------------------------------------------------- /dotfiles/lf/.config/lf/scripts/clear: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | declare -p -A cmd=([action]=remove [identifier]="preview") > "$FIFO_UEBERZUG" 3 | -------------------------------------------------------------------------------- /dotfiles/lf/.config/lf/scripts/draw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/lf/.config/lf/scripts/draw -------------------------------------------------------------------------------- /dotfiles/lf/.config/lf/scripts/lfrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/lf/.config/lf/scripts/lfrun -------------------------------------------------------------------------------- /dotfiles/lf/.config/lf/scripts/preview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/lf/.config/lf/scripts/preview -------------------------------------------------------------------------------- /dotfiles/lf/.config/lf/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/lf/.config/lf/settings -------------------------------------------------------------------------------- /dotfiles/mpd/.config/mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/mpd/.config/mpd/mpd.conf -------------------------------------------------------------------------------- /dotfiles/mpv/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/mpv/.config/mpv/mpv.conf -------------------------------------------------------------------------------- /dotfiles/ncmpcpp/.config/ncmpcpp/bindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/ncmpcpp/.config/ncmpcpp/bindings -------------------------------------------------------------------------------- /dotfiles/ncmpcpp/.config/ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/ncmpcpp/.config/ncmpcpp/config -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/after/syntax/vimwiki.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/after/syntax/vimwiki.vim -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/init.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/configs/chadtree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/configs/chadtree.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/configs/completion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/configs/completion.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/configs/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/configs/init.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/configs/subversive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/configs/subversive.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/configs/taskwiki.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/configs/taskwiki.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/configs/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/configs/treesitter.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/configs/ultisnips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/configs/ultisnips.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/configs/vimtex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/configs/vimtex.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/configs/vimwiki.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/configs/vimwiki.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/mappings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/mappings.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/plugins.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/settings.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/lua/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/lua/utils.lua -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/snips/all.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/snips/all.snippets -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/snips/css.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/snips/css.snippets -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/snips/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/snips/html.snippets -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/snips/javascript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/snips/javascript.snippets -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/snips/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/snips/sh.snippets -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/snips/snippets.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/snips/snippets.snippets -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/snips/tex.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/snips/tex.snippets -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/snips/vimwiki.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/snips/vimwiki.snippets -------------------------------------------------------------------------------- /dotfiles/neovim/.config/nvim/snips/xml.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/neovim/.config/nvim/snips/xml.snippets -------------------------------------------------------------------------------- /dotfiles/newsboat/.config/newsboat/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/newsboat/.config/newsboat/config -------------------------------------------------------------------------------- /dotfiles/picom/.config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/picom/.config/picom/picom.conf -------------------------------------------------------------------------------- /dotfiles/pistol/.config/pistol/pistol.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/pistol/.config/pistol/pistol.conf -------------------------------------------------------------------------------- /dotfiles/qt/.local/share/icons/default/index.theme: -------------------------------------------------------------------------------- 1 | [icon theme] 2 | Inherits=DragonCursors 3 | -------------------------------------------------------------------------------- /dotfiles/sys-portage/etc/portage/make.conf/make.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/sys-portage/etc/portage/make.conf/make.conf -------------------------------------------------------------------------------- /dotfiles/sys-portage/etc/portage/package.accept_keywords/package.accept_keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/sys-portage/etc/portage/package.accept_keywords/package.accept_keywords -------------------------------------------------------------------------------- /dotfiles/sys-portage/etc/portage/package.mask/package.mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/sys-portage/etc/portage/package.mask/package.mask -------------------------------------------------------------------------------- /dotfiles/sys-portage/etc/portage/package.use/net-misc/networkmanager.use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/sys-portage/etc/portage/package.use/net-misc/networkmanager.use -------------------------------------------------------------------------------- /dotfiles/sys-portage/etc/portage/package.use/package.use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/sys-portage/etc/portage/package.use/package.use -------------------------------------------------------------------------------- /dotfiles/sys-portage/etc/portage/package.use/x11-base/xorg-server.use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/sys-portage/etc/portage/package.use/x11-base/xorg-server.use -------------------------------------------------------------------------------- /dotfiles/sys-portage/etc/portage/repos.conf/eselect-repo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/sys-portage/etc/portage/repos.conf/eselect-repo.conf -------------------------------------------------------------------------------- /dotfiles/sys-portage/etc/portage/repos.conf/gentoo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/sys-portage/etc/portage/repos.conf/gentoo.conf -------------------------------------------------------------------------------- /dotfiles/tmux/.config/tmux/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/tmux/.config/tmux/.tmux.conf -------------------------------------------------------------------------------- /dotfiles/transmission-daemon/.config/transmission-daemon/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/transmission-daemon/.config/transmission-daemon/settings.json -------------------------------------------------------------------------------- /dotfiles/tremc/.config/tremc/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/tremc/.config/tremc/settings.cfg -------------------------------------------------------------------------------- /dotfiles/vim/.config/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/vim/.config/vim/vimrc -------------------------------------------------------------------------------- /dotfiles/xdg-utils/.config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/xdg-utils/.config/mimeapps.list -------------------------------------------------------------------------------- /dotfiles/xdg-utils/.local/share/applications/nvim.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Neovim 4 | Exec=st -e vim %F 5 | -------------------------------------------------------------------------------- /dotfiles/xdg-utils/.local/share/applications/torrent.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/xdg-utils/.local/share/applications/torrent.desktop -------------------------------------------------------------------------------- /dotfiles/xdg-utils/.local/share/applications/zathura.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/xdg-utils/.local/share/applications/zathura.desktop -------------------------------------------------------------------------------- /dotfiles/zathura/.config/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/zathura/.config/zathura/zathurarc -------------------------------------------------------------------------------- /dotfiles/zsh/.config/zsh/.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/zsh/.config/zsh/.zprofile -------------------------------------------------------------------------------- /dotfiles/zsh/.config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/zsh/.config/zsh/.zshrc -------------------------------------------------------------------------------- /dotfiles/zsh/.config/zsh/p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/zsh/.config/zsh/p10k.zsh -------------------------------------------------------------------------------- /dotfiles/zsh/.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/dotfiles/zsh/.zshenv -------------------------------------------------------------------------------- /hooks/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/hooks/post-merge -------------------------------------------------------------------------------- /previews/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/previews/desktop.png -------------------------------------------------------------------------------- /previews/zsh-fzf-integration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/previews/zsh-fzf-integration.gif -------------------------------------------------------------------------------- /previews/zsh-menu-complete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/previews/zsh-menu-complete.gif -------------------------------------------------------------------------------- /previews/zsh-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/previews/zsh-notification.png -------------------------------------------------------------------------------- /previews/zsh-syntax-highlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/previews/zsh-syntax-highlighting.png -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarrost/dotfiles/HEAD/setup.sh --------------------------------------------------------------------------------