├── .alacritty.yml ├── .aliases.zsh ├── .config └── nvim │ ├── coc-settings.json │ └── init.vim ├── .gitignore-global ├── .p10k.zsh ├── .profile.template ├── .tmux.conf ├── .tmuxline_snapshot ├── .tool-versions ├── .zprofile ├── .zshenv ├── .zshrc ├── README.md └── init.zsh /.alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.alacritty.yml -------------------------------------------------------------------------------- /.aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.aliases.zsh -------------------------------------------------------------------------------- /.config/nvim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.config/nvim/coc-settings.json -------------------------------------------------------------------------------- /.config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.config/nvim/init.vim -------------------------------------------------------------------------------- /.gitignore-global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.gitignore-global -------------------------------------------------------------------------------- /.p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.p10k.zsh -------------------------------------------------------------------------------- /.profile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.profile.template -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.tmuxline_snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.tmuxline_snapshot -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | java openjdk-16 2 | nodejs lts 3 | elixir master-otp-23 4 | -------------------------------------------------------------------------------- /.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.zprofile -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- 1 | . "$HOME/.cargo/env" 2 | -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /init.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audacioustux/dotfiles/HEAD/init.zsh --------------------------------------------------------------------------------