├── .gitignore ├── .gitmodules ├── Default Applications └── .config │ └── mimeapps.list ├── Git └── .gitconfig ├── Locale └── .config │ └── locale.conf ├── Nautilus └── .config │ └── nautilus │ ├── accels │ └── search-metadata ├── NeoVim ├── .config │ └── nvim │ │ ├── colors │ │ └── tyrant.vim │ │ ├── ftplugin │ │ ├── gitcommit.vim │ │ ├── python.vim │ │ └── vim.vim │ │ ├── init.vim │ │ └── syntax │ │ └── proto.vim └── .local │ └── share │ └── backup │ └── placeholder ├── Neofetch └── .config │ └── neofetch │ └── config ├── Python ├── .config │ ├── flake8 │ └── pip │ │ └── pip.conf ├── .ipython │ └── profile_default │ │ └── ipython_config.py └── Projects │ └── devtools.txt ├── README.md ├── Ranger └── .config │ └── ranger │ ├── rc.conf │ ├── rifle.conf │ └── scope.sh ├── Rust └── .cargo │ └── config ├── SSH └── .ssh │ └── config ├── Shell ├── .zsh-custom │ ├── plugins │ │ ├── aurman │ │ │ └── aurman.plugin.zsh │ │ ├── pacman │ │ │ └── pacman.plugin.zsh │ │ └── pikaur │ │ │ └── pikaur.plugin.zsh │ └── themes │ │ ├── bullet-train.zsh-theme │ │ └── tyrant.zsh-theme ├── .zshenv └── .zshrc ├── Synapse └── .config │ └── synapse │ └── config.json ├── Termite ├── .config │ └── termite │ │ └── config └── .terminfo │ └── x │ └── xterm-termite ├── Tmux └── .tmux.conf ├── Vim ├── .vim │ ├── .vim_backup │ │ └── placeholder │ ├── .vim_swap │ │ └── placeholder │ ├── .vim_undo │ │ └── placeholder │ ├── .viminfo │ │ ├── .tmp │ │ └── placeholder │ ├── UltiSnips │ │ ├── c.snippets │ │ ├── cpp.snippets │ │ ├── markdown.snippets │ │ └── python.snippets │ ├── colors │ │ └── tyrant.vim │ ├── ftplugin │ │ ├── gitcommit.vim │ │ ├── python.vim │ │ └── vim.vim │ └── syntax │ │ └── proto.vim └── .vimrc ├── X11 ├── .Xmodmap ├── .config │ └── gtk-3.0 │ │ └── bookmarks ├── .fehbg ├── .gtkrc-2.0 ├── .profile └── .xinitrc ├── applications.sh ├── commands └── .local │ └── bin │ ├── convert.py │ ├── forward │ ├── imgp.sh │ ├── no_breakline_in_srt.sh │ ├── opml2domain.py │ ├── show_gpu_memory.sh │ ├── show_gpu_usage.sh │ └── tmuxen.sh ├── deploy.sh ├── general.sh ├── goldendict └── .goldendict │ ├── search-from-text.sh │ └── wordtag.py ├── i3 └── .config │ ├── i3 │ ├── config │ ├── exitmenu │ └── status.toml │ └── i3status │ └── config ├── mpv └── .config │ └── mpv │ └── mpv.conf └── nvimpager └── .config └── nvimpager ├── init.vim └── plugged /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /Default Applications/.config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Default Applications/.config/mimeapps.list -------------------------------------------------------------------------------- /Git/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Git/.gitconfig -------------------------------------------------------------------------------- /Locale/.config/locale.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Locale/.config/locale.conf -------------------------------------------------------------------------------- /Nautilus/.config/nautilus/accels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Nautilus/.config/nautilus/accels -------------------------------------------------------------------------------- /Nautilus/.config/nautilus/search-metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Nautilus/.config/nautilus/search-metadata -------------------------------------------------------------------------------- /NeoVim/.config/nvim/colors/tyrant.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/NeoVim/.config/nvim/colors/tyrant.vim -------------------------------------------------------------------------------- /NeoVim/.config/nvim/ftplugin/gitcommit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/NeoVim/.config/nvim/ftplugin/gitcommit.vim -------------------------------------------------------------------------------- /NeoVim/.config/nvim/ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/NeoVim/.config/nvim/ftplugin/python.vim -------------------------------------------------------------------------------- /NeoVim/.config/nvim/ftplugin/vim.vim: -------------------------------------------------------------------------------- 1 | setlocal colorcolumn=0 2 | -------------------------------------------------------------------------------- /NeoVim/.config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/NeoVim/.config/nvim/init.vim -------------------------------------------------------------------------------- /NeoVim/.config/nvim/syntax/proto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/NeoVim/.config/nvim/syntax/proto.vim -------------------------------------------------------------------------------- /NeoVim/.local/share/backup/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Neofetch/.config/neofetch/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Neofetch/.config/neofetch/config -------------------------------------------------------------------------------- /Python/.config/flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E126, W503 3 | -------------------------------------------------------------------------------- /Python/.config/pip/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Python/.config/pip/pip.conf -------------------------------------------------------------------------------- /Python/.ipython/profile_default/ipython_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Python/.ipython/profile_default/ipython_config.py -------------------------------------------------------------------------------- /Python/Projects/devtools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Python/Projects/devtools.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /Ranger/.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Ranger/.config/ranger/rc.conf -------------------------------------------------------------------------------- /Ranger/.config/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Ranger/.config/ranger/rifle.conf -------------------------------------------------------------------------------- /Ranger/.config/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Ranger/.config/ranger/scope.sh -------------------------------------------------------------------------------- /Rust/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Rust/.cargo/config -------------------------------------------------------------------------------- /SSH/.ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/SSH/.ssh/config -------------------------------------------------------------------------------- /Shell/.zsh-custom/plugins/aurman/aurman.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Shell/.zsh-custom/plugins/aurman/aurman.plugin.zsh -------------------------------------------------------------------------------- /Shell/.zsh-custom/plugins/pacman/pacman.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Shell/.zsh-custom/plugins/pacman/pacman.plugin.zsh -------------------------------------------------------------------------------- /Shell/.zsh-custom/plugins/pikaur/pikaur.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Shell/.zsh-custom/plugins/pikaur/pikaur.plugin.zsh -------------------------------------------------------------------------------- /Shell/.zsh-custom/themes/bullet-train.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Shell/.zsh-custom/themes/bullet-train.zsh-theme -------------------------------------------------------------------------------- /Shell/.zsh-custom/themes/tyrant.zsh-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Shell/.zsh-custom/themes/tyrant.zsh-theme -------------------------------------------------------------------------------- /Shell/.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Shell/.zshenv -------------------------------------------------------------------------------- /Shell/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Shell/.zshrc -------------------------------------------------------------------------------- /Synapse/.config/synapse/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Synapse/.config/synapse/config.json -------------------------------------------------------------------------------- /Termite/.config/termite/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Termite/.config/termite/config -------------------------------------------------------------------------------- /Termite/.terminfo/x/xterm-termite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Termite/.terminfo/x/xterm-termite -------------------------------------------------------------------------------- /Tmux/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Tmux/.tmux.conf -------------------------------------------------------------------------------- /Vim/.vim/.vim_backup/placeholder: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /Vim/.vim/.vim_swap/placeholder: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /Vim/.vim/.vim_undo/placeholder: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /Vim/.vim/.viminfo/.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Vim/.vim/.viminfo/placeholder: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /Vim/.vim/UltiSnips/c.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Vim/.vim/UltiSnips/c.snippets -------------------------------------------------------------------------------- /Vim/.vim/UltiSnips/cpp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Vim/.vim/UltiSnips/cpp.snippets -------------------------------------------------------------------------------- /Vim/.vim/UltiSnips/markdown.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Vim/.vim/UltiSnips/markdown.snippets -------------------------------------------------------------------------------- /Vim/.vim/UltiSnips/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Vim/.vim/UltiSnips/python.snippets -------------------------------------------------------------------------------- /Vim/.vim/colors/tyrant.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Vim/.vim/colors/tyrant.vim -------------------------------------------------------------------------------- /Vim/.vim/ftplugin/gitcommit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Vim/.vim/ftplugin/gitcommit.vim -------------------------------------------------------------------------------- /Vim/.vim/ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Vim/.vim/ftplugin/python.vim -------------------------------------------------------------------------------- /Vim/.vim/ftplugin/vim.vim: -------------------------------------------------------------------------------- 1 | setlocal colorcolumn=0 2 | -------------------------------------------------------------------------------- /Vim/.vim/syntax/proto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Vim/.vim/syntax/proto.vim -------------------------------------------------------------------------------- /Vim/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/Vim/.vimrc -------------------------------------------------------------------------------- /X11/.Xmodmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/X11/.Xmodmap -------------------------------------------------------------------------------- /X11/.config/gtk-3.0/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/X11/.config/gtk-3.0/bookmarks -------------------------------------------------------------------------------- /X11/.fehbg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | feh --bg-fill '/home/acgtyrant/background' 3 | -------------------------------------------------------------------------------- /X11/.gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/X11/.gtkrc-2.0 -------------------------------------------------------------------------------- /X11/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/X11/.profile -------------------------------------------------------------------------------- /X11/.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/X11/.xinitrc -------------------------------------------------------------------------------- /applications.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/applications.sh -------------------------------------------------------------------------------- /commands/.local/bin/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/commands/.local/bin/convert.py -------------------------------------------------------------------------------- /commands/.local/bin/forward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/commands/.local/bin/forward -------------------------------------------------------------------------------- /commands/.local/bin/imgp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | http_proxy= curl -F "name=@$*" http://img.vim-cn.com | cat 3 | -------------------------------------------------------------------------------- /commands/.local/bin/no_breakline_in_srt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/commands/.local/bin/no_breakline_in_srt.sh -------------------------------------------------------------------------------- /commands/.local/bin/opml2domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/commands/.local/bin/opml2domain.py -------------------------------------------------------------------------------- /commands/.local/bin/show_gpu_memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/commands/.local/bin/show_gpu_memory.sh -------------------------------------------------------------------------------- /commands/.local/bin/show_gpu_usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/commands/.local/bin/show_gpu_usage.sh -------------------------------------------------------------------------------- /commands/.local/bin/tmuxen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/commands/.local/bin/tmuxen.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/deploy.sh -------------------------------------------------------------------------------- /general.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/general.sh -------------------------------------------------------------------------------- /goldendict/.goldendict/search-from-text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/goldendict/.goldendict/search-from-text.sh -------------------------------------------------------------------------------- /goldendict/.goldendict/wordtag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/goldendict/.goldendict/wordtag.py -------------------------------------------------------------------------------- /i3/.config/i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/i3/.config/i3/config -------------------------------------------------------------------------------- /i3/.config/i3/exitmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/i3/.config/i3/exitmenu -------------------------------------------------------------------------------- /i3/.config/i3/status.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/i3/.config/i3/status.toml -------------------------------------------------------------------------------- /i3/.config/i3status/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/i3/.config/i3status/config -------------------------------------------------------------------------------- /mpv/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | sub-font-size=40 2 | save-position-on-quit 3 | -------------------------------------------------------------------------------- /nvimpager/.config/nvimpager/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acgtyrant/dotfiles/HEAD/nvimpager/.config/nvimpager/init.vim -------------------------------------------------------------------------------- /nvimpager/.config/nvimpager/plugged: -------------------------------------------------------------------------------- 1 | /home/otakutyrant/dotfiles/NeoVim/.config/nvim/plugged --------------------------------------------------------------------------------