├── .bash_aliases ├── .bash_logout ├── .bashrc ├── .gitconfig ├── .gitglobalexclude ├── .gitignore ├── .gitmodules ├── .profile ├── .psqlrc ├── .ripgreprc ├── .screenrc ├── .tmux.conf ├── .vimrc ├── README.md ├── bin ├── $ ├── demo-bash ├── git-new ├── json_pp ├── remove-csi ├── slug └── tmux-start ├── dnsmasq ├── configure-lxd ├── localhost └── test ├── gh-extensions ├── README.md ├── gh-branches-checks │ └── gh-branches-checks └── gh-pr-update-description │ └── gh-pr-update-description ├── git-template ├── hooks │ └── post-checkout └── info │ └── exclude ├── install.sh ├── nginx └── sites.conf ├── php ├── fpm.www.conf └── my.ini └── vscode ├── keybindings.json ├── settings.json └── snippets ├── go.json ├── php.json └── rust.json /.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.bash_aliases -------------------------------------------------------------------------------- /.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.bash_logout -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.bashrc -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitglobalexclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.gitglobalexclude -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.private-gitconfig 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.profile -------------------------------------------------------------------------------- /.psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.psqlrc -------------------------------------------------------------------------------- /.ripgreprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.ripgreprc -------------------------------------------------------------------------------- /.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.screenrc -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/.vimrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/$: -------------------------------------------------------------------------------- 1 | #/usr/bin/env bash 2 | 3 | "$@" 4 | -------------------------------------------------------------------------------- /bin/demo-bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/bin/demo-bash -------------------------------------------------------------------------------- /bin/git-new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/bin/git-new -------------------------------------------------------------------------------- /bin/json_pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/bin/json_pp -------------------------------------------------------------------------------- /bin/remove-csi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/bin/remove-csi -------------------------------------------------------------------------------- /bin/slug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/bin/slug -------------------------------------------------------------------------------- /bin/tmux-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/bin/tmux-start -------------------------------------------------------------------------------- /dnsmasq/configure-lxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/dnsmasq/configure-lxd -------------------------------------------------------------------------------- /dnsmasq/localhost: -------------------------------------------------------------------------------- 1 | address=/localhost/127.0.0.1 2 | -------------------------------------------------------------------------------- /dnsmasq/test: -------------------------------------------------------------------------------- 1 | address=/test/127.0.0.1 2 | -------------------------------------------------------------------------------- /gh-extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/gh-extensions/README.md -------------------------------------------------------------------------------- /gh-extensions/gh-branches-checks/gh-branches-checks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/gh-extensions/gh-branches-checks/gh-branches-checks -------------------------------------------------------------------------------- /gh-extensions/gh-pr-update-description/gh-pr-update-description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/gh-extensions/gh-pr-update-description/gh-pr-update-description -------------------------------------------------------------------------------- /git-template/hooks/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/git-template/hooks/post-checkout -------------------------------------------------------------------------------- /git-template/info/exclude: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/install.sh -------------------------------------------------------------------------------- /nginx/sites.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/nginx/sites.conf -------------------------------------------------------------------------------- /php/fpm.www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/php/fpm.www.conf -------------------------------------------------------------------------------- /php/my.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/php/my.ini -------------------------------------------------------------------------------- /vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/vscode/keybindings.json -------------------------------------------------------------------------------- /vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/vscode/settings.json -------------------------------------------------------------------------------- /vscode/snippets/go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/vscode/snippets/go.json -------------------------------------------------------------------------------- /vscode/snippets/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/vscode/snippets/php.json -------------------------------------------------------------------------------- /vscode/snippets/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyrixx/dotfiles/HEAD/vscode/snippets/rust.json --------------------------------------------------------------------------------