├── .config ├── alacritty │ └── alacritty.toml ├── aliases │ └── public ├── fontconfig │ └── fonts.conf ├── fzf-lua │ └── init.lua ├── ghostty │ ├── config │ ├── gtk.css │ └── themes │ │ └── bhagwan ├── git │ └── config ├── gtk-3.0 │ ├── gtk.css │ └── settings.ini ├── inputrc ├── kitty │ ├── colors.conf │ └── kitty.conf ├── picom │ └── picom.conf ├── pycodestyle ├── rofi │ └── config.rasi ├── rustfmt │ └── rustfmt.toml ├── starship │ └── starship.toml ├── tmux │ └── tmux.conf ├── wezterm │ └── wezterm.lua ├── zathura │ └── zathurarc └── zsh │ ├── .zprofile │ ├── .zshenv │ ├── .zshrc │ ├── fzf-git.sh │ ├── fzf-rg.sh │ ├── fzf_defaults.sh │ └── spaceship.zsh ├── .gitignore ├── .profile ├── .vim └── vimrc ├── .zshenv ├── README.md ├── bin └── yadm └── dots ├── Install.ps1 ├── install.sh ├── install_root.sh ├── refind ├── icons │ └── os_openbsd.png ├── refind.conf └── themes │ └── refind-theme-regular │ └── theme.conf └── screenshots └── rEFInd.png /.config/alacritty/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/alacritty/alacritty.toml -------------------------------------------------------------------------------- /.config/aliases/public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/aliases/public -------------------------------------------------------------------------------- /.config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /.config/fzf-lua/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/fzf-lua/init.lua -------------------------------------------------------------------------------- /.config/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/ghostty/config -------------------------------------------------------------------------------- /.config/ghostty/gtk.css: -------------------------------------------------------------------------------- 1 | window { 2 | padding: 0 3 | } 4 | -------------------------------------------------------------------------------- /.config/ghostty/themes/bhagwan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/ghostty/themes/bhagwan -------------------------------------------------------------------------------- /.config/git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/git/config -------------------------------------------------------------------------------- /.config/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /.config/inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/inputrc -------------------------------------------------------------------------------- /.config/kitty/colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/kitty/colors.conf -------------------------------------------------------------------------------- /.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /.config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/picom/picom.conf -------------------------------------------------------------------------------- /.config/pycodestyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/pycodestyle -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/rofi/config.rasi -------------------------------------------------------------------------------- /.config/rustfmt/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/rustfmt/rustfmt.toml -------------------------------------------------------------------------------- /.config/starship/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/starship/starship.toml -------------------------------------------------------------------------------- /.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /.config/wezterm/wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/wezterm/wezterm.lua -------------------------------------------------------------------------------- /.config/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/zathura/zathurarc -------------------------------------------------------------------------------- /.config/zsh/.zprofile: -------------------------------------------------------------------------------- 1 | ../../.profile -------------------------------------------------------------------------------- /.config/zsh/.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/zsh/.zshenv -------------------------------------------------------------------------------- /.config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/zsh/.zshrc -------------------------------------------------------------------------------- /.config/zsh/fzf-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/zsh/fzf-git.sh -------------------------------------------------------------------------------- /.config/zsh/fzf-rg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/zsh/fzf-rg.sh -------------------------------------------------------------------------------- /.config/zsh/fzf_defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/zsh/fzf_defaults.sh -------------------------------------------------------------------------------- /.config/zsh/spaceship.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.config/zsh/spaceship.zsh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.gitignore -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.profile -------------------------------------------------------------------------------- /.vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/.vim/vimrc -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- 1 | .config/zsh/.zshenv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/README.md -------------------------------------------------------------------------------- /bin/yadm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/bin/yadm -------------------------------------------------------------------------------- /dots/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/dots/Install.ps1 -------------------------------------------------------------------------------- /dots/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/dots/install.sh -------------------------------------------------------------------------------- /dots/install_root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/dots/install_root.sh -------------------------------------------------------------------------------- /dots/refind/icons/os_openbsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/dots/refind/icons/os_openbsd.png -------------------------------------------------------------------------------- /dots/refind/refind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/dots/refind/refind.conf -------------------------------------------------------------------------------- /dots/refind/themes/refind-theme-regular/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/dots/refind/themes/refind-theme-regular/theme.conf -------------------------------------------------------------------------------- /dots/screenshots/rEFInd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibhagwan/dots/HEAD/dots/screenshots/rEFInd.png --------------------------------------------------------------------------------