├── .gitignore ├── LICENSE ├── README.md ├── bashrc ├── bin ├── alert ├── beep ├── beep.mp3 ├── failure.png ├── git-wtf ├── idea.sh ├── install-discord ├── mana ├── node-install-all-packages ├── printAndRun ├── rerun ├── retry ├── success.png ├── toggle-netskope └── toggle-third-monitor ├── desktop-shortcuts ├── firefox-developer.desktop ├── toggle-third-monitor.desktop └── vial.desktop ├── doc └── prompt.png ├── gitconfig ├── gitignore ├── imwheelrc ├── install.sh ├── libinput-gestures.conf ├── npmrc ├── profile ├── pythonstartup ├── ripgreprc ├── safe-rm ├── starship.toml ├── sysctl.d ├── elasticsearch.conf └── idea.conf ├── terminator.conf ├── vim ├── .gitignore ├── filetype.vim ├── syntax │ └── log.vim └── vundle-config.vim ├── vimrc ├── zsh ├── aliases.zsh ├── bindkey.zsh ├── completion.zsh ├── config.zsh └── functions.zsh ├── zshenv └── zshrc /.gitignore: -------------------------------------------------------------------------------- 1 | vim/.netrwhist 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bashrc -------------------------------------------------------------------------------- /bin/alert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/alert -------------------------------------------------------------------------------- /bin/beep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/beep -------------------------------------------------------------------------------- /bin/beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/beep.mp3 -------------------------------------------------------------------------------- /bin/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/failure.png -------------------------------------------------------------------------------- /bin/git-wtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/git-wtf -------------------------------------------------------------------------------- /bin/idea.sh: -------------------------------------------------------------------------------- 1 | /home/tom/Apps/idea/bin/idea.sh -------------------------------------------------------------------------------- /bin/install-discord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/install-discord -------------------------------------------------------------------------------- /bin/mana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/mana -------------------------------------------------------------------------------- /bin/node-install-all-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/node-install-all-packages -------------------------------------------------------------------------------- /bin/printAndRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/printAndRun -------------------------------------------------------------------------------- /bin/rerun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/rerun -------------------------------------------------------------------------------- /bin/retry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/retry -------------------------------------------------------------------------------- /bin/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/success.png -------------------------------------------------------------------------------- /bin/toggle-netskope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/toggle-netskope -------------------------------------------------------------------------------- /bin/toggle-third-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/bin/toggle-third-monitor -------------------------------------------------------------------------------- /desktop-shortcuts/firefox-developer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/desktop-shortcuts/firefox-developer.desktop -------------------------------------------------------------------------------- /desktop-shortcuts/toggle-third-monitor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/desktop-shortcuts/toggle-third-monitor.desktop -------------------------------------------------------------------------------- /desktop-shortcuts/vial.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/desktop-shortcuts/vial.desktop -------------------------------------------------------------------------------- /doc/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/doc/prompt.png -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/gitconfig -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/gitignore -------------------------------------------------------------------------------- /imwheelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/imwheelrc -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/install.sh -------------------------------------------------------------------------------- /libinput-gestures.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/libinput-gestures.conf -------------------------------------------------------------------------------- /npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/npmrc -------------------------------------------------------------------------------- /profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/profile -------------------------------------------------------------------------------- /pythonstartup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/pythonstartup -------------------------------------------------------------------------------- /ripgreprc: -------------------------------------------------------------------------------- 1 | --smart-case 2 | -------------------------------------------------------------------------------- /safe-rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/safe-rm -------------------------------------------------------------------------------- /starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/starship.toml -------------------------------------------------------------------------------- /sysctl.d/elasticsearch.conf: -------------------------------------------------------------------------------- 1 | vm.max_map_count=262144 2 | -------------------------------------------------------------------------------- /sysctl.d/idea.conf: -------------------------------------------------------------------------------- 1 | fs.inotify.max_user_watches = 524288 2 | -------------------------------------------------------------------------------- /terminator.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/terminator.conf -------------------------------------------------------------------------------- /vim/.gitignore: -------------------------------------------------------------------------------- 1 | bundle/ 2 | -------------------------------------------------------------------------------- /vim/filetype.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/vim/filetype.vim -------------------------------------------------------------------------------- /vim/syntax/log.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/vim/syntax/log.vim -------------------------------------------------------------------------------- /vim/vundle-config.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/vim/vundle-config.vim -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/vimrc -------------------------------------------------------------------------------- /zsh/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/zsh/aliases.zsh -------------------------------------------------------------------------------- /zsh/bindkey.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/zsh/bindkey.zsh -------------------------------------------------------------------------------- /zsh/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/zsh/completion.zsh -------------------------------------------------------------------------------- /zsh/config.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/zsh/config.zsh -------------------------------------------------------------------------------- /zsh/functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/zsh/functions.zsh -------------------------------------------------------------------------------- /zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/zshenv -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsquest/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------