├── Bspwm_forest ├── .config │ ├── bspwm │ │ ├── bspwm-rules │ │ ├── bspwmrc │ │ └── bspwmrc.backup │ ├── cava │ │ └── config │ ├── dunst │ │ ├── bspwm-dunstrc │ │ ├── dunstrc │ │ └── random-schemes.sh │ ├── kak-lsp │ │ └── kak-lsp.toml │ ├── kak │ │ └── kakrc │ ├── kitty │ │ ├── colors.conf │ │ ├── kitty.conf │ │ └── kitty.conf.save │ ├── mpv │ │ ├── mpv.conf │ │ └── mpvtube_playlists │ ├── neofetch │ │ └── config │ ├── nvim │ │ ├── autoload │ │ │ └── lightline │ │ │ │ └── colorscheme │ │ │ │ └── lena.vim │ │ ├── backup │ │ │ ├── init.vim │ │ │ └── statusline.vim │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ ├── NeoSolarized.vim │ │ │ ├── lena.vim │ │ │ └── summerfruit256.vim │ │ ├── init.vim │ │ └── statusline.vim │ ├── picom │ │ ├── compton-backup.conf │ │ └── picom.conf │ ├── polybar │ │ ├── config │ │ ├── launch.sh │ │ └── scripts │ │ │ ├── hwinfo.pl │ │ │ ├── load.pl │ │ │ ├── memory.pl │ │ │ ├── vpn.pl │ │ │ └── weather.py │ ├── ranger │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── __init__.pyo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.opt-1.pyc │ │ │ │ ├── devicons.cpython-38.opt-1.pyc │ │ │ │ └── devicons_linemode.cpython-38.opt-1.pyc │ │ │ ├── devicons.py │ │ │ ├── devicons.pyo │ │ │ ├── devicons_linemode.py │ │ │ └── devicons_linemode.pyo │ │ ├── rc.conf │ │ ├── rifle.conf │ │ └── scope.sh │ ├── rofi │ │ ├── colors.rasi │ │ └── config.rasi │ ├── sxhkd │ │ └── sxhkdrc │ └── zsh │ │ ├── .p10k.zsh │ │ ├── .zcompdump │ │ ├── .zcompdump.zwc │ │ ├── .zhistory │ │ ├── .zim │ │ ├── .latest_version │ │ ├── init.zsh │ │ ├── init.zsh.old │ │ ├── init.zsh.zwc │ │ ├── init.zsh.zwc.old │ │ ├── login_init.zsh │ │ ├── login_init.zsh.zwc │ │ ├── zimfw.zsh │ │ └── zimfw.zsh.zwc │ │ ├── .zimrc │ │ ├── .zlogin │ │ ├── .zlogin.zwc │ │ ├── .zprofile │ │ ├── .zprofile.zwc │ │ ├── .zshenv │ │ ├── .zshenv.zwc │ │ ├── .zshrc │ │ ├── .zshrc.zwc │ │ ├── alias.zsh │ │ ├── config │ │ ├── alias.zsh │ │ ├── history.zsh │ │ ├── misc │ │ ├── p10k.zsh │ │ ├── user_config.zsh │ │ └── zim_config.zsh │ │ ├── misc │ │ └── user_config.zsh ├── .tmux.conf └── .zshrc ├── Bspwm_lake ├── .config │ ├── bspwm │ │ ├── bspwm-rules │ │ ├── bspwmrc │ │ └── bspwmrc.backup │ ├── cava │ │ └── config │ ├── dunst │ │ ├── bspwm-dunstrc │ │ ├── dunstrc │ │ └── random-schemes.sh │ ├── kak-lsp │ │ └── kak-lsp.toml │ ├── kak │ │ └── kakrc │ ├── kitty │ │ ├── colors.conf │ │ ├── kitty.conf │ │ └── kitty.conf.save │ ├── mpv │ │ ├── mpv.conf │ │ └── mpvtube_playlists │ ├── neofetch │ │ └── config │ ├── nvim │ │ ├── autoload │ │ │ ├── lightline │ │ │ │ └── colorscheme │ │ │ │ │ └── lena.vim │ │ │ ├── plug.vim │ │ │ └── plug.vim.old │ │ ├── backup │ │ │ ├── init.vim │ │ │ └── statusline.vim │ │ ├── coc-settings.json │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ ├── NeoSolarized.vim │ │ │ └── lena.vim │ │ ├── init.vim │ │ ├── statusline.vim │ │ └── statusline.vim_ │ ├── picom │ │ ├── compton-backup.conf │ │ └── picom.conf │ ├── polybar │ │ ├── backup │ │ │ ├── config │ │ │ └── launch.sh │ │ ├── config │ │ ├── launch.sh │ │ └── scripts │ │ │ ├── hwinfo.pl │ │ │ ├── load.pl │ │ │ ├── memory.pl │ │ │ ├── vpn.pl │ │ │ └── weather.py │ ├── ranger │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── __init__.pyo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.opt-1.pyc │ │ │ │ ├── devicons.cpython-37.pyc │ │ │ │ ├── devicons.cpython-38.opt-1.pyc │ │ │ │ ├── devicons_linemode.cpython-37.pyc │ │ │ │ └── devicons_linemode.cpython-38.opt-1.pyc │ │ │ ├── devicons.py │ │ │ ├── devicons.pyo │ │ │ ├── devicons_linemode.py │ │ │ └── devicons_linemode.pyo │ │ ├── rc.conf │ │ ├── rifle.conf │ │ └── scope.sh │ ├── rofi │ │ ├── colors.rasi │ │ └── config.rasi │ ├── sxhkd │ │ └── sxhkdrc │ └── zsh │ │ ├── .p10k.zsh │ │ ├── .zcompdump │ │ ├── .zcompdump.zwc │ │ ├── .zhistory │ │ ├── .zim │ │ ├── .latest_version │ │ ├── init.zsh │ │ ├── init.zsh.old │ │ ├── init.zsh.zwc │ │ ├── init.zsh.zwc.old │ │ ├── login_init.zsh │ │ ├── login_init.zsh.zwc │ │ ├── zimfw.zsh │ │ └── zimfw.zsh.zwc │ │ ├── .zimrc │ │ ├── .zlogin │ │ ├── .zlogin.zwc │ │ ├── .zprofile │ │ ├── .zprofile.zwc │ │ ├── .zshenv │ │ ├── .zshenv.zwc │ │ ├── .zshrc │ │ ├── .zshrc.zwc │ │ ├── alias.zsh │ │ ├── config │ │ ├── alias.zsh │ │ ├── history.zsh │ │ ├── misc │ │ ├── p10k.zsh │ │ ├── user_config.zsh │ │ └── zim_config.zsh │ │ ├── misc │ │ └── user_config.zsh ├── .tmux.conf └── .zshrc ├── Bspwm_nier ├── .config │ ├── bspwm │ │ ├── bspwm-rules │ │ ├── bspwmrc │ │ └── bspwmrc.backup │ ├── cava │ │ └── config │ ├── dunst │ │ ├── dunstrc │ │ └── random-schemes.sh │ ├── kak-lsp │ │ └── kak-lsp.toml │ ├── kak │ │ └── kakrc │ ├── kitty │ │ ├── colors.conf │ │ ├── kitty.conf │ │ └── kitty.conf.save │ ├── mpv │ │ ├── mpv.conf │ │ └── mpvtube_playlists │ ├── neofetch │ │ └── config │ ├── nvim │ │ ├── autoload │ │ │ └── lightline │ │ │ │ └── colorscheme │ │ │ │ └── lena.vim │ │ ├── backup │ │ │ ├── init.vim │ │ │ └── statusline.vim │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ ├── NeoSolarized.vim │ │ │ ├── lena.vim │ │ │ └── summerfruit256.vim │ │ ├── init.vim │ │ └── statusline.vim │ ├── picom │ │ ├── compton-backup.conf │ │ └── picom.conf │ ├── polybar │ │ ├── config │ │ ├── launch.sh │ │ └── scripts │ │ │ ├── hwinfo.pl │ │ │ ├── load.pl │ │ │ ├── memory.pl │ │ │ ├── vpn.pl │ │ │ └── weather.py │ ├── ranger │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── __init__.pyo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.opt-1.pyc │ │ │ │ ├── devicons.cpython-38.opt-1.pyc │ │ │ │ └── devicons_linemode.cpython-38.opt-1.pyc │ │ │ ├── devicons.py │ │ │ ├── devicons.pyo │ │ │ ├── devicons_linemode.py │ │ │ └── devicons_linemode.pyo │ │ ├── rc.conf │ │ ├── rifle.conf │ │ └── scope.sh │ ├── rofi │ │ ├── colors.rasi │ │ └── config.rasi │ └── sxhkd │ │ └── sxhkdrc ├── .tmux.conf └── .zshrc ├── Bspwm_pywal ├── .config │ ├── bspwm │ │ ├── bspwm-rules │ │ ├── bspwmrc │ │ └── bspwmrc.backup │ ├── cava │ │ └── config │ ├── dunst │ │ ├── bspwm-dunstrc │ │ ├── dunstrc │ │ └── random-schemes.sh │ ├── kak-lsp │ │ └── kak-lsp.toml │ ├── kak │ │ └── kakrc │ ├── kitty │ │ ├── colors.conf │ │ ├── kitty.conf │ │ └── kitty.conf.save │ ├── mpv │ │ ├── mpv.conf │ │ └── mpvtube_playlists │ ├── neofetch │ │ └── config │ ├── nvim │ │ ├── autoload │ │ │ └── lightline │ │ │ │ └── colorscheme │ │ │ │ └── lena.vim │ │ ├── backup │ │ │ ├── init.vim │ │ │ └── statusline.vim │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ ├── NeoSolarized.vim │ │ │ └── lena.vim │ │ ├── init.vim │ │ ├── plugged │ │ │ ├── SimpylFold │ │ │ │ ├── .vintrc.yaml │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── autoload │ │ │ │ │ └── SimpylFold.vim │ │ │ │ ├── doc │ │ │ │ │ └── SimpylFold.txt │ │ │ │ ├── ftplugin │ │ │ │ │ ├── cython │ │ │ │ │ │ └── SimpylFold.vim │ │ │ │ │ └── python │ │ │ │ │ │ └── SimpylFold.vim │ │ │ │ └── plugin │ │ │ │ │ └── SimpylFold.vim │ │ │ ├── auto-pairs │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── doc │ │ │ │ │ └── AutoPairs.txt │ │ │ │ └── plugin │ │ │ │ │ └── auto-pairs.vim │ │ │ ├── challenger-deep │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── autoload │ │ │ │ │ ├── airline │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ └── challenger_deep.vim │ │ │ │ │ └── lightline │ │ │ │ │ │ └── colorscheme │ │ │ │ │ │ └── challenger_deep.vim │ │ │ │ └── colors │ │ │ │ │ └── challenger_deep.vim │ │ │ ├── dracula │ │ │ │ ├── .github │ │ │ │ │ ├── issue_template.md │ │ │ │ │ └── pull_request_template.md │ │ │ │ ├── .gitignore │ │ │ │ ├── INSTALL.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── after │ │ │ │ │ ├── plugin │ │ │ │ │ │ └── dracula.vim │ │ │ │ │ └── syntax │ │ │ │ │ │ ├── css.vim │ │ │ │ │ │ ├── gitcommit.vim │ │ │ │ │ │ ├── html.vim │ │ │ │ │ │ ├── javascript.vim │ │ │ │ │ │ ├── json.vim │ │ │ │ │ │ ├── markdown.vim │ │ │ │ │ │ ├── ocaml.vim │ │ │ │ │ │ ├── perl.vim │ │ │ │ │ │ ├── php.vim │ │ │ │ │ │ ├── plantuml.vim │ │ │ │ │ │ ├── python.vim │ │ │ │ │ │ ├── ruby.vim │ │ │ │ │ │ ├── rust.vim │ │ │ │ │ │ ├── sass.vim │ │ │ │ │ │ ├── sh.vim │ │ │ │ │ │ ├── tex.vim │ │ │ │ │ │ ├── typescript.vim │ │ │ │ │ │ ├── typescriptreact.vim │ │ │ │ │ │ ├── vim.vim │ │ │ │ │ │ ├── xml.vim │ │ │ │ │ │ └── yaml.vim │ │ │ │ ├── autoload │ │ │ │ │ ├── airline │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ └── dracula.vim │ │ │ │ │ ├── dracula.vim │ │ │ │ │ └── lightline │ │ │ │ │ │ └── colorscheme │ │ │ │ │ │ └── dracula.vim │ │ │ │ ├── colors │ │ │ │ │ └── dracula.vim │ │ │ │ ├── doc │ │ │ │ │ └── dracula.txt │ │ │ │ └── screenshot.png │ │ │ ├── gruvbox │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── README.md │ │ │ │ ├── autoload │ │ │ │ │ ├── airline │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ └── gruvbox.vim │ │ │ │ │ ├── gruvbox.vim │ │ │ │ │ └── lightline │ │ │ │ │ │ └── colorscheme │ │ │ │ │ │ └── gruvbox.vim │ │ │ │ ├── colors │ │ │ │ │ └── gruvbox.vim │ │ │ │ ├── gruvbox_256palette.sh │ │ │ │ ├── gruvbox_256palette_osx.sh │ │ │ │ └── package.json │ │ │ ├── limelight.vim │ │ │ │ ├── .travis.yml │ │ │ │ ├── README.md │ │ │ │ ├── autoload │ │ │ │ │ └── limelight.vim │ │ │ │ ├── plugin │ │ │ │ │ └── limelight.vim │ │ │ │ └── test │ │ │ │ │ └── limelight.vader │ │ │ ├── nerdtree │ │ │ │ ├── .github │ │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ │ ├── bug.md │ │ │ │ │ │ ├── feature_request.md │ │ │ │ │ │ └── question.md │ │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ │ └── workflows │ │ │ │ │ │ └── vint.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .vintrc.yaml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENCE │ │ │ │ ├── README.markdown │ │ │ │ ├── _config.yml │ │ │ │ ├── autoload │ │ │ │ │ ├── nerdtree.vim │ │ │ │ │ └── nerdtree │ │ │ │ │ │ └── ui_glue.vim │ │ │ │ ├── doc │ │ │ │ │ └── NERDTree.txt │ │ │ │ ├── lib │ │ │ │ │ └── nerdtree │ │ │ │ │ │ ├── bookmark.vim │ │ │ │ │ │ ├── creator.vim │ │ │ │ │ │ ├── event.vim │ │ │ │ │ │ ├── flag_set.vim │ │ │ │ │ │ ├── key_map.vim │ │ │ │ │ │ ├── menu_controller.vim │ │ │ │ │ │ ├── menu_item.vim │ │ │ │ │ │ ├── nerdtree.vim │ │ │ │ │ │ ├── notifier.vim │ │ │ │ │ │ ├── opener.vim │ │ │ │ │ │ ├── path.vim │ │ │ │ │ │ ├── tree_dir_node.vim │ │ │ │ │ │ ├── tree_file_node.vim │ │ │ │ │ │ └── ui.vim │ │ │ │ ├── nerdtree_plugin │ │ │ │ │ ├── exec_menuitem.vim │ │ │ │ │ ├── fs_menu.vim │ │ │ │ │ └── vcs.vim │ │ │ │ ├── plugin │ │ │ │ │ └── NERD_tree.vim │ │ │ │ ├── screenshot.png │ │ │ │ └── syntax │ │ │ │ │ └── nerdtree.vim │ │ │ ├── palenight.vim │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── autoload │ │ │ │ │ ├── airline │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ └── palenight.vim │ │ │ │ │ ├── lightline │ │ │ │ │ │ └── colorscheme │ │ │ │ │ │ │ └── palenight.vim │ │ │ │ │ └── palenight.vim │ │ │ │ ├── colors │ │ │ │ │ └── palenight.vim │ │ │ │ └── images │ │ │ │ │ └── screenshot.png │ │ │ ├── vim-color-forest-night │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── alacritty │ │ │ │ │ └── README.md │ │ │ │ ├── autoload │ │ │ │ │ ├── airline │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ └── forest_night.vim │ │ │ │ │ └── lightline │ │ │ │ │ │ └── colorscheme │ │ │ │ │ │ └── forest_night.vim │ │ │ │ ├── colors │ │ │ │ │ └── forest-night.vim │ │ │ │ └── zsh │ │ │ │ │ ├── .zsh-theme-forest-night │ │ │ │ │ └── README.md │ │ │ ├── vim-colors-xcode │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── colors │ │ │ │ │ ├── xcodedark.vim │ │ │ │ │ ├── xcodedarkhc.vim │ │ │ │ │ ├── xcodelight.vim │ │ │ │ │ ├── xcodelighthc.vim │ │ │ │ │ └── xcodewwdc.vim │ │ │ │ ├── doc │ │ │ │ │ ├── tags │ │ │ │ │ ├── xcodedark.txt │ │ │ │ │ ├── xcodedarkhc.txt │ │ │ │ │ ├── xcodelight.txt │ │ │ │ │ ├── xcodelighthc.txt │ │ │ │ │ └── xcodewwdc.txt │ │ │ │ ├── templates │ │ │ │ │ ├── _doc_header.colortemplate │ │ │ │ │ ├── _emph_funcs.colortemplate │ │ │ │ │ ├── _emph_idents.colortemplate │ │ │ │ │ ├── _emph_types.colortemplate │ │ │ │ │ ├── _green_comments.colortemplate │ │ │ │ │ ├── _links.colortemplate │ │ │ │ │ ├── _markdown.colortemplate │ │ │ │ │ ├── _match_paren_style.colortemplate │ │ │ │ │ ├── _xcodedark.colortemplate │ │ │ │ │ ├── _xcodelight.colortemplate │ │ │ │ │ ├── xcodedark.colortemplate │ │ │ │ │ ├── xcodedarkhc.colortemplate │ │ │ │ │ ├── xcodelight.colortemplate │ │ │ │ │ ├── xcodelighthc.colortemplate │ │ │ │ │ └── xcodewwdc.colortemplate │ │ │ │ ├── xcodedark.itermcolors │ │ │ │ ├── xcodedarkhc.itermcolors │ │ │ │ ├── xcodelight.itermcolors │ │ │ │ ├── xcodelighthc.itermcolors │ │ │ │ └── xcodewwdc.itermcolors │ │ │ ├── vim-devicons │ │ │ │ ├── .github │ │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── DEVELOPER.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── autoload │ │ │ │ │ ├── airline │ │ │ │ │ │ └── extensions │ │ │ │ │ │ │ └── tabline │ │ │ │ │ │ │ └── formatters │ │ │ │ │ │ │ └── webdevicons.vim │ │ │ │ │ ├── devicons │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── ctrlp.vim │ │ │ │ │ │ │ ├── denite.vim │ │ │ │ │ │ │ ├── flagship.vim │ │ │ │ │ │ │ ├── startify.vim │ │ │ │ │ │ │ ├── unite.vim │ │ │ │ │ │ │ └── vimfiler.vim │ │ │ │ │ └── vimfiler │ │ │ │ │ │ └── columns │ │ │ │ │ │ └── devicons.vim │ │ │ │ ├── doc │ │ │ │ │ └── webdevicons.txt │ │ │ │ ├── nerdtree_plugin │ │ │ │ │ └── webdevicons.vim │ │ │ │ ├── plugin │ │ │ │ │ └── webdevicons.vim │ │ │ │ ├── pythonx │ │ │ │ │ └── vim_devicons │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── powerline │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── segments.py │ │ │ │ └── rplugin │ │ │ │ │ └── python3 │ │ │ │ │ └── denite │ │ │ │ │ └── filter │ │ │ │ │ └── devicons_denite_converter.py │ │ │ ├── vim-latex-live-preview │ │ │ │ ├── .editorconfig │ │ │ │ ├── .github │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ │ └── stale.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ ├── doc │ │ │ │ │ └── vim-latex-live-preview.txt │ │ │ │ ├── misc │ │ │ │ │ ├── mkzip.sh │ │ │ │ │ └── screenshot-evince.gif │ │ │ │ └── plugin │ │ │ │ │ └── latexlivepreview.vim │ │ │ ├── vim-polyglot │ │ │ │ ├── .github │ │ │ │ │ └── ISSUE_TEMPLATE │ │ │ │ │ │ ├── add-language.md │ │ │ │ │ │ ├── add-support-for-language.md │ │ │ │ │ │ └── bug_report.md │ │ │ │ ├── after │ │ │ │ │ ├── ftplugin │ │ │ │ │ │ ├── cabal.vim │ │ │ │ │ │ ├── coffee.vim │ │ │ │ │ │ ├── haskell.vim │ │ │ │ │ │ ├── idris.vim │ │ │ │ │ │ ├── javascript.vim │ │ │ │ │ │ ├── javascriptreact.vim │ │ │ │ │ │ ├── llvm.vim │ │ │ │ │ │ ├── puppet.vim │ │ │ │ │ │ ├── tsx.vim │ │ │ │ │ │ ├── typescriptreact.vim │ │ │ │ │ │ └── yaml.vim │ │ │ │ │ ├── indent │ │ │ │ │ │ ├── javascript.vim │ │ │ │ │ │ ├── javascriptreact.vim │ │ │ │ │ │ ├── objc.vim │ │ │ │ │ │ ├── tsx.vim │ │ │ │ │ │ └── typescriptreact.vim │ │ │ │ │ └── syntax │ │ │ │ │ │ ├── c.vim │ │ │ │ │ │ ├── coffee.vim │ │ │ │ │ │ ├── cpp.vim │ │ │ │ │ │ ├── haskell.vim │ │ │ │ │ │ ├── help.vim │ │ │ │ │ │ ├── html.vim │ │ │ │ │ │ ├── idris.vim │ │ │ │ │ │ ├── javascript.vim │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ └── graphql.vim │ │ │ │ │ │ ├── javascriptreact.vim │ │ │ │ │ │ ├── javascriptreact │ │ │ │ │ │ └── graphql.vim │ │ │ │ │ │ ├── jsx_pretty.vim │ │ │ │ │ │ ├── llvm.vim │ │ │ │ │ │ ├── mdx.vim │ │ │ │ │ │ ├── mma.vim │ │ │ │ │ │ ├── objc.vim │ │ │ │ │ │ ├── reason.vim │ │ │ │ │ │ ├── rspec.vim │ │ │ │ │ │ ├── ruby.vim │ │ │ │ │ │ ├── rust.vim │ │ │ │ │ │ ├── tex.vim │ │ │ │ │ │ ├── tsx.vim │ │ │ │ │ │ ├── typescript │ │ │ │ │ │ └── graphql.vim │ │ │ │ │ │ ├── typescriptreact.vim │ │ │ │ │ │ ├── typescriptreact │ │ │ │ │ │ └── graphql.vim │ │ │ │ │ │ ├── vue │ │ │ │ │ │ └── graphql.vim │ │ │ │ │ │ ├── yaml.vim │ │ │ │ │ │ └── zsh.vim │ │ │ │ ├── autoload │ │ │ │ │ ├── LaTeXtoUnicode.vim │ │ │ │ │ ├── RstFold.vim │ │ │ │ │ ├── cargo.vim │ │ │ │ │ ├── cargo │ │ │ │ │ │ └── quickfix.vim │ │ │ │ │ ├── clojurecomplete.vim │ │ │ │ │ ├── coffee.vim │ │ │ │ │ ├── crystal_lang.vim │ │ │ │ │ ├── csv.vim │ │ │ │ │ ├── dart.vim │ │ │ │ │ ├── db │ │ │ │ │ │ └── adapter │ │ │ │ │ │ │ └── ecto.vim │ │ │ │ │ ├── elixir │ │ │ │ │ │ ├── indent.vim │ │ │ │ │ │ └── util.vim │ │ │ │ │ ├── elm.vim │ │ │ │ │ ├── elm │ │ │ │ │ │ └── util.vim │ │ │ │ │ ├── fish.vim │ │ │ │ │ ├── go │ │ │ │ │ │ └── config.vim │ │ │ │ │ ├── graphql.vim │ │ │ │ │ ├── htmlcomplete.vim │ │ │ │ │ ├── jsx_pretty │ │ │ │ │ │ ├── comment.vim │ │ │ │ │ │ └── indent.vim │ │ │ │ │ ├── julia.vim │ │ │ │ │ ├── julia │ │ │ │ │ │ └── doc.vim │ │ │ │ │ ├── julia_blocks.vim │ │ │ │ │ ├── julia_latex_symbols.vim │ │ │ │ │ ├── pony.vim │ │ │ │ │ ├── puppet │ │ │ │ │ │ ├── align.vim │ │ │ │ │ │ ├── ctags.vim │ │ │ │ │ │ └── format.vim │ │ │ │ │ ├── python │ │ │ │ │ │ └── utils.vim │ │ │ │ │ ├── rubycomplete.vim │ │ │ │ │ ├── rust.vim │ │ │ │ │ ├── rust │ │ │ │ │ │ ├── debugging.vim │ │ │ │ │ │ ├── delimitmate.vim │ │ │ │ │ │ └── tags.vim │ │ │ │ │ ├── rustfmt.vim │ │ │ │ │ ├── smt2.vim │ │ │ │ │ ├── terraform.vim │ │ │ │ │ ├── vifm │ │ │ │ │ │ ├── edit.vim │ │ │ │ │ │ └── globals.vim │ │ │ │ │ ├── vital │ │ │ │ │ │ ├── _crystal.vim │ │ │ │ │ │ ├── _crystal │ │ │ │ │ │ │ ├── ColorEcho.vim │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ ├── List.vim │ │ │ │ │ │ │ │ └── String.vim │ │ │ │ │ │ │ ├── Process.vim │ │ │ │ │ │ │ └── Web │ │ │ │ │ │ │ │ └── JSON.vim │ │ │ │ │ │ ├── crystal.vim │ │ │ │ │ │ └── crystal.vital │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── aria.vim │ │ │ │ │ │ └── html5.vim │ │ │ │ │ └── zig │ │ │ │ │ │ ├── config.vim │ │ │ │ │ │ ├── fmt.vim │ │ │ │ │ │ ├── list.vim │ │ │ │ │ │ └── util.vim │ │ │ │ ├── build │ │ │ │ ├── compiler │ │ │ │ │ ├── cake.vim │ │ │ │ │ ├── cargo.vim │ │ │ │ │ ├── coffee.vim │ │ │ │ │ ├── credo.vim │ │ │ │ │ ├── cryptol.vim │ │ │ │ │ ├── cucumber.vim │ │ │ │ │ ├── eruby.vim │ │ │ │ │ ├── eslint.vim │ │ │ │ │ ├── exunit.vim │ │ │ │ │ ├── fish.vim │ │ │ │ │ ├── go.vim │ │ │ │ │ ├── gradle.vim │ │ │ │ │ ├── gradlew.vim │ │ │ │ │ ├── haml.vim │ │ │ │ │ ├── lilypond.vim │ │ │ │ │ ├── ls.vim │ │ │ │ │ ├── mix.vim │ │ │ │ │ ├── nim.vim │ │ │ │ │ ├── nix-build.vim │ │ │ │ │ ├── ocaml.vim │ │ │ │ │ ├── powershell.vim │ │ │ │ │ ├── python.vim │ │ │ │ │ ├── rake.vim │ │ │ │ │ ├── rspec.vim │ │ │ │ │ ├── ruby.vim │ │ │ │ │ ├── rubyunit.vim │ │ │ │ │ ├── rustc.vim │ │ │ │ │ ├── sbt.vim │ │ │ │ │ ├── swift.vim │ │ │ │ │ └── typescript.vim │ │ │ │ ├── config.vim │ │ │ │ ├── ctags │ │ │ │ │ ├── puppet.ctags │ │ │ │ │ ├── puppet_u.ctags │ │ │ │ │ ├── rust.ctags │ │ │ │ │ ├── scala.ctags │ │ │ │ │ └── typescript.ctags │ │ │ │ ├── extras │ │ │ │ │ ├── flow.vim │ │ │ │ │ ├── jsdoc.vim │ │ │ │ │ └── ngdoc.vim │ │ │ │ ├── ftdetect │ │ │ │ │ └── polyglot.vim │ │ │ │ ├── ftplugin │ │ │ │ │ ├── Dockerfile.vim │ │ │ │ │ ├── ansible.vim │ │ │ │ │ ├── ansible_hosts.vim │ │ │ │ │ ├── blade.vim │ │ │ │ │ ├── caddyfile.vim │ │ │ │ │ ├── clojure.vim │ │ │ │ │ ├── coffee.vim │ │ │ │ │ ├── cryptol │ │ │ │ │ │ └── folding.vim │ │ │ │ │ ├── crystal.vim │ │ │ │ │ ├── csv.vim │ │ │ │ │ ├── cucumber.vim │ │ │ │ │ ├── dart.vim │ │ │ │ │ ├── dhall.vim │ │ │ │ │ ├── docker-compose.vim │ │ │ │ │ ├── dune.vim │ │ │ │ │ ├── eelixir.vim │ │ │ │ │ ├── elixir.vim │ │ │ │ │ ├── elm.vim │ │ │ │ │ ├── elm │ │ │ │ │ │ └── tagbar.vim │ │ │ │ │ ├── embeddedpuppet.vim │ │ │ │ │ ├── ember-script.vim │ │ │ │ │ ├── emblem.vim │ │ │ │ │ ├── eruby.vim │ │ │ │ │ ├── fish.vim │ │ │ │ │ ├── git.vim │ │ │ │ │ ├── gitcommit.vim │ │ │ │ │ ├── gitconfig.vim │ │ │ │ │ ├── gitrebase.vim │ │ │ │ │ ├── gitsendemail.vim │ │ │ │ │ ├── graphql.vim │ │ │ │ │ ├── haml.vim │ │ │ │ │ ├── hcl.vim │ │ │ │ │ ├── hive.vim │ │ │ │ │ ├── html.vim │ │ │ │ │ ├── i3config.vim │ │ │ │ │ ├── idris.vim │ │ │ │ │ ├── ion.vim │ │ │ │ │ ├── json.vim │ │ │ │ │ ├── julia.vim │ │ │ │ │ ├── juliadoc.vim │ │ │ │ │ ├── kotlin.vim │ │ │ │ │ ├── latex-box │ │ │ │ │ │ ├── common.vim │ │ │ │ │ │ ├── complete.vim │ │ │ │ │ │ ├── findmain.vim │ │ │ │ │ │ ├── folding.vim │ │ │ │ │ │ ├── latexmk.vim │ │ │ │ │ │ ├── mappings.vim │ │ │ │ │ │ └── motion.vim │ │ │ │ │ ├── latextoc.vim │ │ │ │ │ ├── less.vim │ │ │ │ │ ├── lilypond.vim │ │ │ │ │ ├── litcoffee.vim │ │ │ │ │ ├── llvm.vim │ │ │ │ │ ├── ls.vim │ │ │ │ │ ├── mail_vifm.vim │ │ │ │ │ ├── mako.vim │ │ │ │ │ ├── markdown.vim │ │ │ │ │ ├── meson.vim │ │ │ │ │ ├── mma.vim │ │ │ │ │ ├── moon.vim │ │ │ │ │ ├── mustache.vim │ │ │ │ │ ├── nginx.vim │ │ │ │ │ ├── nix.vim │ │ │ │ │ ├── oasis.vim │ │ │ │ │ ├── objc.vim │ │ │ │ │ ├── ocaml.vim │ │ │ │ │ ├── ocamlbuild_tags.vim │ │ │ │ │ ├── omake.vim │ │ │ │ │ ├── opencl.vim │ │ │ │ │ ├── perl.vim │ │ │ │ │ ├── plantuml.vim │ │ │ │ │ ├── pony.vim │ │ │ │ │ ├── ps1.vim │ │ │ │ │ ├── ps1xml.vim │ │ │ │ │ ├── pug.vim │ │ │ │ │ ├── puppet.vim │ │ │ │ │ ├── puppet_tagbar.vim │ │ │ │ │ ├── purescript.vim │ │ │ │ │ ├── qml.vim │ │ │ │ │ ├── racket.vim │ │ │ │ │ ├── raml.vim │ │ │ │ │ ├── razor.vim │ │ │ │ │ ├── rst.vim │ │ │ │ │ ├── ruby.vim │ │ │ │ │ ├── rust.vim │ │ │ │ │ ├── rust │ │ │ │ │ │ └── tagbar.vim │ │ │ │ │ ├── scala.vim │ │ │ │ │ ├── scala.xpt.vim │ │ │ │ │ ├── scala │ │ │ │ │ │ └── tagbar.vim │ │ │ │ │ ├── scss.vim │ │ │ │ │ ├── sexplib.vim │ │ │ │ │ ├── slim.vim │ │ │ │ │ ├── smt2.vim │ │ │ │ │ ├── solidity.vim │ │ │ │ │ ├── stylus.vim │ │ │ │ │ ├── swift.vim │ │ │ │ │ ├── systemd.vim │ │ │ │ │ ├── tablegen.vim │ │ │ │ │ ├── terraform.vim │ │ │ │ │ ├── tex_LatexBox.vim │ │ │ │ │ ├── textile.vim │ │ │ │ │ ├── tmux.vim │ │ │ │ │ ├── toml.vim │ │ │ │ │ ├── tt2html.vim │ │ │ │ │ ├── twig.vim │ │ │ │ │ ├── typescript.vim │ │ │ │ │ ├── typescriptreact.vim │ │ │ │ │ ├── vala.vim │ │ │ │ │ ├── vifm-cmdedit.vim │ │ │ │ │ ├── vifm-edit.vim │ │ │ │ │ ├── vifm-rename.vim │ │ │ │ │ ├── vifm.vim │ │ │ │ │ ├── vlang.vim │ │ │ │ │ ├── vue.vim │ │ │ │ │ ├── xs.vim │ │ │ │ │ └── zig.vim │ │ │ │ ├── indent │ │ │ │ │ ├── Dockerfile.vim │ │ │ │ │ ├── Jenkinsfile.vim │ │ │ │ │ ├── ansible.vim │ │ │ │ │ ├── applescript.vim │ │ │ │ │ ├── arduino.vim │ │ │ │ │ ├── autohotkey.vim │ │ │ │ │ ├── blade.vim │ │ │ │ │ ├── cabal.vim │ │ │ │ │ ├── caddyfile.vim │ │ │ │ │ ├── clojure.vim │ │ │ │ │ ├── cmake.vim │ │ │ │ │ ├── coffee.vim │ │ │ │ │ ├── crystal.vim │ │ │ │ │ ├── cucumber.vim │ │ │ │ │ ├── cython.vim │ │ │ │ │ ├── d.vim │ │ │ │ │ ├── dart.vim │ │ │ │ │ ├── dune.vim │ │ │ │ │ ├── eelixir.vim │ │ │ │ │ ├── elixir.vim │ │ │ │ │ ├── elm.vim │ │ │ │ │ ├── ember-script.vim │ │ │ │ │ ├── emblem.vim │ │ │ │ │ ├── erlang.vim │ │ │ │ │ ├── eruby.vim │ │ │ │ │ ├── fish.vim │ │ │ │ │ ├── fsharp.vim │ │ │ │ │ ├── gitconfig.vim │ │ │ │ │ ├── glsl.vim │ │ │ │ │ ├── go.vim │ │ │ │ │ ├── gohtmltmpl.vim │ │ │ │ │ ├── graphql.vim │ │ │ │ │ ├── haml.vim │ │ │ │ │ ├── handlebars.vim │ │ │ │ │ ├── haskell.vim │ │ │ │ │ ├── hcl.vim │ │ │ │ │ ├── html.vim │ │ │ │ │ ├── idris.vim │ │ │ │ │ ├── javascript.vim │ │ │ │ │ ├── jinja.vim │ │ │ │ │ ├── json.vim │ │ │ │ │ ├── jst.vim │ │ │ │ │ ├── julia.vim │ │ │ │ │ ├── kotlin.vim │ │ │ │ │ ├── less.vim │ │ │ │ │ ├── lilypond.vim │ │ │ │ │ ├── litcoffee.vim │ │ │ │ │ ├── llvm.vim │ │ │ │ │ ├── ls.vim │ │ │ │ │ ├── lua.vim │ │ │ │ │ ├── mako.vim │ │ │ │ │ ├── markdown.vim │ │ │ │ │ ├── meson.vim │ │ │ │ │ ├── moon.vim │ │ │ │ │ ├── nginx.vim │ │ │ │ │ ├── nim.vim │ │ │ │ │ ├── nix.vim │ │ │ │ │ ├── ocaml.vim │ │ │ │ │ ├── octave.vim │ │ │ │ │ ├── omake.vim │ │ │ │ │ ├── opencl.vim │ │ │ │ │ ├── perl.vim │ │ │ │ │ ├── pgsql.vim │ │ │ │ │ ├── plantuml.vim │ │ │ │ │ ├── pony.vim │ │ │ │ │ ├── proto.vim │ │ │ │ │ ├── ps1.vim │ │ │ │ │ ├── pug.vim │ │ │ │ │ ├── puppet.vim │ │ │ │ │ ├── purescript.vim │ │ │ │ │ ├── python.vim │ │ │ │ │ ├── qml.vim │ │ │ │ │ ├── racket.vim │ │ │ │ │ ├── razor.vim │ │ │ │ │ ├── reason.vim │ │ │ │ │ ├── rst.vim │ │ │ │ │ ├── ruby.vim │ │ │ │ │ ├── rust.vim │ │ │ │ │ ├── scala.vim │ │ │ │ │ ├── scss.vim │ │ │ │ │ ├── slim.vim │ │ │ │ │ ├── slime.vim │ │ │ │ │ ├── solidity.vim │ │ │ │ │ ├── stylus.vim │ │ │ │ │ ├── svelte.vim │ │ │ │ │ ├── svg.vim │ │ │ │ │ ├── swift.vim │ │ │ │ │ ├── terraform.vim │ │ │ │ │ ├── tex.vim │ │ │ │ │ ├── twig.vim │ │ │ │ │ ├── typescript.vim │ │ │ │ │ ├── typescriptreact.vim │ │ │ │ │ ├── vala.vim │ │ │ │ │ ├── velocity.vim │ │ │ │ │ ├── vlang.vim │ │ │ │ │ └── vue.vim │ │ │ │ ├── plugin_guard.vim.template │ │ │ │ ├── plugin_guard_jsx.vim.template │ │ │ │ └── syntax │ │ │ │ │ ├── Dockerfile.vim │ │ │ │ │ ├── Jenkinsfile.vim │ │ │ │ │ ├── ansible.vim │ │ │ │ │ ├── ansible_hosts.vim │ │ │ │ │ ├── apiblueprint.vim │ │ │ │ │ ├── applescript.vim │ │ │ │ │ ├── arduino.vim │ │ │ │ │ ├── asciidoc.vim │ │ │ │ │ ├── asl.vim │ │ │ │ │ ├── basic │ │ │ │ │ ├── class.vim │ │ │ │ │ ├── cluster.vim │ │ │ │ │ ├── decorator.vim │ │ │ │ │ ├── doc.vim │ │ │ │ │ ├── function.vim │ │ │ │ │ ├── identifiers.vim │ │ │ │ │ ├── keyword.vim │ │ │ │ │ ├── literal.vim │ │ │ │ │ ├── members.vim │ │ │ │ │ ├── object.vim │ │ │ │ │ ├── patch.vim │ │ │ │ │ ├── reserved.vim │ │ │ │ │ ├── symbols.vim │ │ │ │ │ └── type.vim │ │ │ │ │ ├── blade.vim │ │ │ │ │ ├── c.vim │ │ │ │ │ ├── cabal.vim │ │ │ │ │ ├── caddyfile.vim │ │ │ │ │ ├── carp.vim │ │ │ │ │ ├── clojure.vim │ │ │ │ │ ├── cmake.vim │ │ │ │ │ ├── coffee.vim │ │ │ │ │ ├── common.vim │ │ │ │ │ ├── cpp.vim │ │ │ │ │ ├── cql.vim │ │ │ │ │ ├── cryptol.vim │ │ │ │ │ ├── crystal.vim │ │ │ │ │ ├── csv.vim │ │ │ │ │ ├── cucumber.vim │ │ │ │ │ ├── cuesheet.vim │ │ │ │ │ ├── d.vim │ │ │ │ │ ├── dart.vim │ │ │ │ │ ├── dcov.vim │ │ │ │ │ ├── dd.vim │ │ │ │ │ ├── ddoc.vim │ │ │ │ │ ├── dhall.vim │ │ │ │ │ ├── docker-compose.vim │ │ │ │ │ ├── dsdl.vim │ │ │ │ │ ├── dune.vim │ │ │ │ │ ├── eelixir.vim │ │ │ │ │ ├── elixir.vim │ │ │ │ │ ├── elm.vim │ │ │ │ │ ├── embeddedpuppet.vim │ │ │ │ │ ├── ember-script.vim │ │ │ │ │ ├── emblem.vim │ │ │ │ │ ├── erlang.vim │ │ │ │ │ ├── eruby.vim │ │ │ │ │ ├── fbs.vim │ │ │ │ │ ├── ferm.vim │ │ │ │ │ ├── fish.vim │ │ │ │ │ ├── flow.vim │ │ │ │ │ ├── fsharp.vim │ │ │ │ │ ├── git.vim │ │ │ │ │ ├── gitcommit.vim │ │ │ │ │ ├── gitconfig.vim │ │ │ │ │ ├── gitrebase.vim │ │ │ │ │ ├── gitsendemail.vim │ │ │ │ │ ├── glsl.vim │ │ │ │ │ ├── gmpl.vim │ │ │ │ │ ├── gnuplot.vim │ │ │ │ │ ├── go.vim │ │ │ │ │ ├── godebugoutput.vim │ │ │ │ │ ├── godebugstacktrace.vim │ │ │ │ │ ├── godebugvariables.vim │ │ │ │ │ ├── godefstack.vim │ │ │ │ │ ├── gohtmltmpl.vim │ │ │ │ │ ├── gomod.vim │ │ │ │ │ ├── gotexttmpl.vim │ │ │ │ │ ├── graphql.vim │ │ │ │ │ ├── haml.vim │ │ │ │ │ ├── haproxy.vim │ │ │ │ │ ├── haskell.vim │ │ │ │ │ ├── haxe.vim │ │ │ │ │ ├── hcl.vim │ │ │ │ │ ├── helm.vim │ │ │ │ │ ├── hive.vim │ │ │ │ │ ├── html.vim │ │ │ │ │ ├── html │ │ │ │ │ ├── aria.vim │ │ │ │ │ ├── electron.vim │ │ │ │ │ └── rdfa.vim │ │ │ │ │ ├── i3config.vim │ │ │ │ │ ├── idris.vim │ │ │ │ │ ├── ion.vim │ │ │ │ │ ├── javascript.vim │ │ │ │ │ ├── javascript │ │ │ │ │ └── html5.vim │ │ │ │ │ ├── jinja.vim │ │ │ │ │ ├── jinja2.vim │ │ │ │ │ ├── json.vim │ │ │ │ │ ├── json5.vim │ │ │ │ │ ├── jst.vim │ │ │ │ │ ├── julia.vim │ │ │ │ │ ├── juliadoc.vim │ │ │ │ │ ├── kotlin.vim │ │ │ │ │ ├── latextoc.vim │ │ │ │ │ ├── less.vim │ │ │ │ │ ├── lidris.vim │ │ │ │ │ ├── lilypond-words.vim │ │ │ │ │ ├── lilypond.vim │ │ │ │ │ ├── litcoffee.vim │ │ │ │ │ ├── llvm.vim │ │ │ │ │ ├── log.vim │ │ │ │ │ ├── ls.vim │ │ │ │ │ ├── lua.vim │ │ │ │ │ ├── mako.vim │ │ │ │ │ ├── markdown.vim │ │ │ │ │ ├── mason.vim │ │ │ │ │ ├── merlin.vim │ │ │ │ │ ├── meson.vim │ │ │ │ │ ├── mma.vim │ │ │ │ │ ├── moon.vim │ │ │ │ │ ├── mustache.vim │ │ │ │ │ ├── nginx.vim │ │ │ │ │ ├── nim.vim │ │ │ │ │ ├── nix.vim │ │ │ │ │ ├── oasis.vim │ │ │ │ │ ├── ocaml.vim │ │ │ │ │ ├── ocamlbuild_tags.vim │ │ │ │ │ ├── ocpbuild.vim │ │ │ │ │ ├── ocpbuildroot.vim │ │ │ │ │ ├── octave.vim │ │ │ │ │ ├── omake.vim │ │ │ │ │ ├── opam.vim │ │ │ │ │ ├── opencl.vim │ │ │ │ │ ├── perl.vim │ │ │ │ │ ├── pgsql.vim │ │ │ │ │ ├── php.vim │ │ │ │ │ ├── plantuml.vim │ │ │ │ │ ├── pod.vim │ │ │ │ │ ├── pony.vim │ │ │ │ │ ├── proto.vim │ │ │ │ │ ├── ps1.vim │ │ │ │ │ ├── ps1xml.vim │ │ │ │ │ ├── pug.vim │ │ │ │ │ ├── puppet.vim │ │ │ │ │ ├── purescript.vim │ │ │ │ │ ├── python.vim │ │ │ │ │ ├── qmake.vim │ │ │ │ │ ├── qml.vim │ │ │ │ │ ├── racket.vim │ │ │ │ │ ├── ragel.vim │ │ │ │ │ ├── raml.vim │ │ │ │ │ ├── razor.vim │ │ │ │ │ ├── reason.vim │ │ │ │ │ ├── rhelp.vim │ │ │ │ │ ├── rnoweb.vim │ │ │ │ │ ├── rst.vim │ │ │ │ │ ├── ruby.vim │ │ │ │ │ ├── rust.vim │ │ │ │ │ ├── sbt.vim │ │ │ │ │ ├── scala.vim │ │ │ │ │ ├── scss.vim │ │ │ │ │ ├── sexplib.vim │ │ │ │ │ ├── slim.vim │ │ │ │ │ ├── slime.vim │ │ │ │ │ ├── smhl.vim │ │ │ │ │ ├── smt2.vim │ │ │ │ │ ├── solidity.vim │ │ │ │ │ ├── stylus.vim │ │ │ │ │ ├── svelte.vim │ │ │ │ │ ├── svg.vim │ │ │ │ │ ├── swift.vim │ │ │ │ │ ├── sxhkdrc.vim │ │ │ │ │ ├── systemd.vim │ │ │ │ │ ├── tablegen.vim │ │ │ │ │ ├── tap.vim │ │ │ │ │ ├── terraform.vim │ │ │ │ │ ├── textile.vim │ │ │ │ │ ├── thrift.vim │ │ │ │ │ ├── tmux.vim │ │ │ │ │ ├── tomdoc.vim │ │ │ │ │ ├── toml.vim │ │ │ │ │ ├── tptp.vim │ │ │ │ │ ├── tt2.vim │ │ │ │ │ ├── tt2html.vim │ │ │ │ │ ├── tt2js.vim │ │ │ │ │ ├── twig.vim │ │ │ │ │ ├── typescript.vim │ │ │ │ │ ├── typescriptreact.vim │ │ │ │ │ ├── vala.vim │ │ │ │ │ ├── vbnet.vim │ │ │ │ │ ├── vcl.vim │ │ │ │ │ ├── velocity.vim │ │ │ │ │ ├── vifm.vim │ │ │ │ │ ├── vimgo.vim │ │ │ │ │ ├── vlang.vim │ │ │ │ │ ├── vue.vim │ │ │ │ │ ├── xdc.vim │ │ │ │ │ ├── xml.vim │ │ │ │ │ ├── xs.vim │ │ │ │ │ ├── xsl.vim │ │ │ │ │ ├── yats.vim │ │ │ │ │ ├── yats │ │ │ │ │ ├── css.vim │ │ │ │ │ ├── dom-document.vim │ │ │ │ │ ├── dom-elem.vim │ │ │ │ │ ├── dom-event.vim │ │ │ │ │ ├── dom-form.vim │ │ │ │ │ ├── dom-node.vim │ │ │ │ │ ├── dom-storage.vim │ │ │ │ │ ├── ecma-402.vim │ │ │ │ │ ├── es6-array.vim │ │ │ │ │ ├── es6-date.vim │ │ │ │ │ ├── es6-function.vim │ │ │ │ │ ├── es6-json.vim │ │ │ │ │ ├── es6-map.vim │ │ │ │ │ ├── es6-math.vim │ │ │ │ │ ├── es6-number.vim │ │ │ │ │ ├── es6-object.vim │ │ │ │ │ ├── es6-promise.vim │ │ │ │ │ ├── es6-proxy.vim │ │ │ │ │ ├── es6-reflect.vim │ │ │ │ │ ├── es6-regexp.vim │ │ │ │ │ ├── es6-set.vim │ │ │ │ │ ├── es6-string.vim │ │ │ │ │ ├── es6-symbol.vim │ │ │ │ │ ├── event.vim │ │ │ │ │ ├── node.vim │ │ │ │ │ ├── test.vim │ │ │ │ │ ├── typescript.vim │ │ │ │ │ ├── web-blob.vim │ │ │ │ │ ├── web-console.vim │ │ │ │ │ ├── web-crypto.vim │ │ │ │ │ ├── web-encoding.vim │ │ │ │ │ ├── web-fetch.vim │ │ │ │ │ ├── web-geo.vim │ │ │ │ │ ├── web-history.vim │ │ │ │ │ ├── web-location.vim │ │ │ │ │ ├── web-navigator.vim │ │ │ │ │ ├── web-network.vim │ │ │ │ │ ├── web-payment.vim │ │ │ │ │ ├── web-service-worker.vim │ │ │ │ │ ├── web-window.vim │ │ │ │ │ ├── web-xhr.vim │ │ │ │ │ └── web.vim │ │ │ │ │ ├── zephir.vim │ │ │ │ │ └── zig.vim │ │ │ └── vim-sleuth │ │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── CONTRIBUTING.markdown │ │ │ │ ├── README.markdown │ │ │ │ ├── doc │ │ │ │ └── sleuth.txt │ │ │ │ └── plugin │ │ │ │ └── sleuth.vim │ │ └── statusline.vim │ ├── picom │ │ ├── compton-backup.conf │ │ └── picom.conf │ ├── polybar │ │ ├── backup │ │ │ ├── config │ │ │ └── launch.sh │ │ ├── config │ │ ├── launch.sh │ │ └── scripts │ │ │ ├── hwinfo.pl │ │ │ ├── load.pl │ │ │ ├── memory.pl │ │ │ ├── vpn.pl │ │ │ └── weather.py │ ├── ranger │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── __init__.pyo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.opt-1.pyc │ │ │ │ ├── devicons.cpython-38.opt-1.pyc │ │ │ │ └── devicons_linemode.cpython-38.opt-1.pyc │ │ │ ├── devicons.py │ │ │ ├── devicons.pyo │ │ │ ├── devicons_linemode.py │ │ │ └── devicons_linemode.pyo │ │ ├── rc.conf │ │ ├── rifle.conf │ │ └── scope.sh │ ├── rofi │ │ └── config.rasi │ └── sxhkd │ │ └── sxhkdrc ├── .tmux.conf └── .zshrc ├── Bspwm_tea ├── .config │ ├── bspwm │ │ ├── bspwm-rules │ │ ├── bspwmrc │ │ └── bspwmrc.backup │ ├── cava │ │ └── config │ ├── dunst │ │ ├── dunstrc │ │ └── random-schemes.sh │ ├── kak-lsp │ │ └── kak-lsp.toml │ ├── kak │ │ └── kakrc │ ├── kitty │ │ ├── colors.conf │ │ ├── kitty.conf │ │ └── kitty.conf.save │ ├── mpv │ │ ├── mpv.conf │ │ └── mpvtube_playlists │ ├── neofetch │ │ └── config │ ├── nvim │ │ ├── autoload │ │ │ └── lightline │ │ │ │ └── colorscheme │ │ │ │ └── lena.vim │ │ ├── backup │ │ │ ├── init.vim │ │ │ └── statusline.vim │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ ├── NeoSolarized.vim │ │ │ └── lena.vim │ │ ├── init.vim │ │ ├── plugged │ │ │ └── vim-colors-xcode │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── colors │ │ │ │ ├── xcodedark.vim │ │ │ │ ├── xcodedarkhc.vim │ │ │ │ ├── xcodelight.vim │ │ │ │ ├── xcodelighthc.vim │ │ │ │ └── xcodewwdc.vim │ │ │ │ ├── doc │ │ │ │ ├── tags │ │ │ │ ├── xcodedark.txt │ │ │ │ ├── xcodedarkhc.txt │ │ │ │ ├── xcodelight.txt │ │ │ │ ├── xcodelighthc.txt │ │ │ │ └── xcodewwdc.txt │ │ │ │ ├── templates │ │ │ │ ├── _doc_header.colortemplate │ │ │ │ ├── _emph_funcs.colortemplate │ │ │ │ ├── _emph_idents.colortemplate │ │ │ │ ├── _emph_types.colortemplate │ │ │ │ ├── _green_comments.colortemplate │ │ │ │ ├── _links.colortemplate │ │ │ │ ├── _markdown.colortemplate │ │ │ │ ├── _match_paren_style.colortemplate │ │ │ │ ├── _xcodedark.colortemplate │ │ │ │ ├── _xcodelight.colortemplate │ │ │ │ ├── xcodedark.colortemplate │ │ │ │ ├── xcodedarkhc.colortemplate │ │ │ │ ├── xcodelight.colortemplate │ │ │ │ ├── xcodelighthc.colortemplate │ │ │ │ └── xcodewwdc.colortemplate │ │ │ │ ├── xcodedark.itermcolors │ │ │ │ ├── xcodedarkhc.itermcolors │ │ │ │ ├── xcodelight.itermcolors │ │ │ │ ├── xcodelighthc.itermcolors │ │ │ │ └── xcodewwdc.itermcolors │ │ └── statusline.vim │ ├── picom │ │ ├── compton-backup.conf │ │ └── picom.conf │ ├── polybar │ │ ├── backup │ │ │ ├── config │ │ │ └── launch.sh │ │ ├── config │ │ ├── launch.sh │ │ └── scripts │ │ │ ├── hwinfo.pl │ │ │ ├── load.pl │ │ │ ├── memory.pl │ │ │ ├── vpn.pl │ │ │ └── weather.py │ ├── ranger │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── __init__.pyo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.opt-1.pyc │ │ │ │ ├── devicons.cpython-38.opt-1.pyc │ │ │ │ └── devicons_linemode.cpython-38.opt-1.pyc │ │ │ ├── devicons.py │ │ │ ├── devicons.pyo │ │ │ ├── devicons_linemode.py │ │ │ └── devicons_linemode.pyo │ │ ├── rc.conf │ │ ├── rifle.conf │ │ └── scope.sh │ ├── rofi │ │ ├── colors.rasi │ │ └── config.rasi │ └── sxhkd │ │ └── sxhkdrc ├── .tmux.conf └── .zshrc ├── Dwm_girl ├── .config │ ├── bspwm │ │ ├── bspwm-rules │ │ ├── bspwmrc │ │ └── bspwmrc.backup │ ├── cava │ │ └── config │ ├── dunst │ │ ├── bspwm-dunstrc │ │ ├── dunstrc │ │ └── random-schemes.sh │ ├── kak-lsp │ │ └── kak-lsp.toml │ ├── kak │ │ └── kakrc │ ├── kitty │ │ ├── colors.conf │ │ ├── kitty.conf │ │ └── kitty.conf.save │ ├── mpv │ │ ├── mpv.conf │ │ └── mpvtube_playlists │ ├── neofetch │ │ └── config │ ├── nvim │ │ ├── autoload │ │ │ └── lightline │ │ │ │ └── colorscheme │ │ │ │ └── lena.vim │ │ ├── backup │ │ │ ├── init.vim │ │ │ └── statusline.vim │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ ├── NeoSolarized.vim │ │ │ ├── lena.vim │ │ │ └── summerfruit256.vim │ │ ├── init.vim │ │ ├── statusline.vim │ │ └── statusline.vim_ │ ├── picom │ │ ├── compton-backup.conf │ │ └── picom.conf │ ├── polybar │ │ ├── backup │ │ │ ├── config │ │ │ └── launch.sh │ │ ├── config │ │ ├── launch.sh │ │ └── scripts │ │ │ ├── hwinfo.pl │ │ │ ├── load.pl │ │ │ ├── memory.pl │ │ │ ├── vpn.pl │ │ │ └── weather.py │ ├── ranger │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── __init__.pyo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.opt-1.pyc │ │ │ │ ├── devicons.cpython-38.opt-1.pyc │ │ │ │ └── devicons_linemode.cpython-38.opt-1.pyc │ │ │ ├── devicons.py │ │ │ ├── devicons.pyo │ │ │ ├── devicons_linemode.py │ │ │ └── devicons_linemode.pyo │ │ ├── rc.conf │ │ ├── rifle.conf │ │ └── scope.sh │ ├── rofi │ │ ├── colors.rasi │ │ └── config.rasi │ └── sxhkd │ │ └── sxhkdrc ├── .tmux.conf └── .zshrc ├── Dwm_solid ├── .config │ ├── bspwm │ │ ├── bspwm-rules │ │ ├── bspwmrc │ │ └── bspwmrc.backup │ ├── cava │ │ └── config │ ├── dunst │ │ ├── dunstrc │ │ └── random-schemes.sh │ ├── kak-lsp │ │ └── kak-lsp.toml │ ├── kak │ │ └── kakrc │ ├── kitty │ │ ├── colors.conf │ │ ├── kitty.conf │ │ └── kitty.conf.save │ ├── mpv │ │ ├── mpv.conf │ │ └── mpvtube_playlists │ ├── neofetch │ │ └── config │ ├── nvim │ │ ├── autoload │ │ │ └── lightline │ │ │ │ └── colorscheme │ │ │ │ └── lena.vim │ │ ├── backup │ │ │ ├── init.vim │ │ │ └── statusline.vim │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ ├── NeoSolarized.vim │ │ │ ├── lena.vim │ │ │ └── summerfruit256.vim │ │ ├── init.vim │ │ └── statusline.vim │ ├── picom │ │ ├── picom-backup.conf │ │ └── picom.conf │ ├── polybar │ │ ├── config │ │ ├── launch.sh │ │ └── scripts │ │ │ ├── hwinfo.pl │ │ │ ├── load.pl │ │ │ ├── memory.pl │ │ │ ├── vpn.pl │ │ │ └── weather.py │ ├── ranger │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── __init__.pyo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.opt-1.pyc │ │ │ │ ├── devicons.cpython-38.opt-1.pyc │ │ │ │ └── devicons_linemode.cpython-38.opt-1.pyc │ │ │ ├── devicons.py │ │ │ ├── devicons.pyo │ │ │ ├── devicons_linemode.py │ │ │ └── devicons_linemode.pyo │ │ ├── rc.conf │ │ ├── rifle.conf │ │ └── scope.sh │ ├── rofi │ │ ├── colors.rasi │ │ └── config.rasi │ ├── sxhkd │ │ └── sxhkdrc │ └── zsh │ │ ├── .p10k.zsh │ │ ├── .zcompdump │ │ ├── .zcompdump.zwc │ │ ├── .zhistory │ │ ├── .zim │ │ ├── .latest_version │ │ ├── init.zsh │ │ ├── init.zsh.old │ │ ├── init.zsh.zwc │ │ ├── login_init.zsh │ │ ├── login_init.zsh.old │ │ ├── login_init.zsh.zwc │ │ ├── zimfw.zsh │ │ └── zimfw.zsh.zwc │ │ ├── .zimrc │ │ ├── .zlogin │ │ ├── .zlogin.zwc │ │ ├── .zprofile │ │ ├── .zprofile.zwc │ │ ├── .zshenv │ │ ├── .zshenv.zwc │ │ ├── .zshrc │ │ ├── .zshrc.zwc │ │ ├── alias.zsh │ │ ├── config │ │ ├── alias.zsh │ │ ├── misc │ │ ├── p10k.zsh │ │ ├── user_config.zsh │ │ └── zim_config.zsh │ │ ├── misc │ │ ├── user_config.zsh │ │ └── zim_config.zsh └── .tmux.conf ├── README.md ├── Screenshots ├── StartupPage.png ├── Theme-change.gif ├── bspwm_Forest1.png ├── bspwm_Forest2.png ├── bspwm_Lake1.png ├── bspwm_Lake2.png ├── bspwm_Nier1.png ├── bspwm_Nier2.png ├── bspwm_Pywal1.png ├── bspwm_Pywal2.png ├── bspwm_Pywal3.png ├── bspwm_Tea.png ├── dwm_Girl1.png ├── dwm_Girl2.png ├── dwm_Solid1.png ├── dwm_Solid2.png └── i3_Mountains.png ├── StartupPage ├── Discord.css ├── Discord_back.css ├── FirefoxCSS │ └── chrome │ │ ├── add.svg │ │ ├── left-arrow.svg │ │ ├── right-arrow.svg │ │ ├── userChrome.css │ │ └── userContent.css ├── README.md ├── css │ └── style.css ├── fonts │ └── roboto-mono-medium.ttf └── index.html ├── WIP └── test ├── Wallpapers └── Wallpapers │ ├── Cyberleft-1080P.png │ ├── animecity.jpg │ ├── anonymous.jpg │ ├── bar.jpg │ ├── bicycle.jpg │ ├── board.png │ ├── car.png │ ├── city.jpg │ ├── connected.jpg │ ├── cybercity.jpg │ ├── empire.jpg │ ├── fantasy.jpg │ ├── flower.jpg │ ├── forest.jpg │ ├── girl.png │ ├── glasses.jpg │ ├── index.jpg │ ├── kaneki.jpg │ ├── killer.png │ ├── lake.png │ ├── lost.jpg │ ├── machine.jpg │ ├── madness.png │ ├── miami.jpg │ ├── modern.jpg │ ├── morpho.jpg │ ├── mountains.jpg │ ├── nier.png │ ├── pink.png │ ├── pink_mountains.png │ ├── rain.jpg │ ├── rising-sun.png │ ├── rocket.png │ ├── ship.jpg │ ├── skull.png │ ├── smoke.png │ ├── solid.png │ ├── sombra.png │ ├── store.jpg │ ├── tea.jpg │ ├── terminator.jpg │ ├── violet.png │ └── winter.png ├── bin └── bin │ ├── 0x0 │ ├── README.md │ ├── Theme-change │ ├── ascii │ ├── ascii1 │ ├── ascii2 │ ├── autostart │ ├── autostart-xmonad │ ├── balls │ ├── bar │ ├── bar_small │ ├── bar_xmonad │ ├── battery.ogg │ ├── batterywarn │ ├── bud │ ├── bunnyfetch │ ├── color │ ├── colorballs │ ├── colorblock │ ├── colorpanes │ ├── colorpanes_sh │ ├── colorpick │ ├── darken │ ├── devour │ ├── dunstxres │ ├── dwmloop │ ├── dwmstart │ ├── emoji │ ├── generate │ ├── getn │ ├── giph │ ├── human │ ├── lfrun │ ├── mnt │ ├── moe │ ├── mpvctl │ ├── opn │ ├── paleta │ ├── performance_mode │ ├── pfetch │ ├── picom_anim │ ├── pm │ ├── record │ ├── rofi-clip │ ├── rofi-emoji │ ├── rofi-wal │ ├── rofi_mpvtube │ ├── scratchpad │ ├── screenshot-menu.sh │ ├── shades │ ├── shitfetch │ ├── shitfetch_old │ ├── song-name │ ├── song-name_xmo │ ├── stmessage │ ├── tb │ ├── term_draw │ ├── urlcleanse │ ├── vifmimg │ ├── vifmrun │ ├── visualizer │ ├── vol │ ├── volume-control.sh │ ├── wal-discord │ ├── wal-set │ ├── wallblur │ ├── xmobar │ └── vol │ ├── xmobarpad │ ├── xrdm │ └── xvars ├── common ├── .doom.d │ ├── README.org │ ├── bindings.el │ ├── config.el │ ├── config.org │ ├── init.el │ ├── kak-evil.el │ ├── kak.el │ ├── modules │ │ └── config │ │ │ └── default │ │ │ ├── +emacs-bindings.el │ │ │ ├── +emacs.el │ │ │ ├── +evil-bindings.el │ │ │ ├── +evil.el │ │ │ ├── README.org │ │ │ ├── autoload │ │ │ ├── default.el │ │ │ ├── files.el │ │ │ ├── search.el │ │ │ └── text.el │ │ │ ├── config.el │ │ │ └── packages.el │ ├── packages.el │ └── themes │ │ ├── bill.png │ │ ├── dip-theme.el │ │ ├── doom-custom-theme.el │ │ ├── doom-lake-theme.el │ │ ├── doom-nord1-theme.el │ │ ├── doom-selenized-dark-theme.el │ │ ├── doom-solid-theme.el │ │ ├── doom-xres-theme.el │ │ └── richard.png └── xrdb │ ├── cute │ └── cute │ ├── forest │ ├── forest │ └── forest_ │ ├── girl │ └── girl │ ├── lake │ └── lake │ ├── nier │ └── nier │ ├── pywal │ └── pywal │ ├── solid │ └── solid │ └── tea │ ├── tea │ ├── tea1 │ └── tea3 ├── configuration.nix ├── i3 ├── .Xresources ├── .config │ ├── cava │ │ └── config │ ├── compton │ │ └── compton.conf │ ├── i3 │ │ ├── config │ │ └── config.save │ ├── kitty │ │ ├── font.conf │ │ ├── kitty.conf │ │ └── theme.conf │ ├── nvim │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ └── NeoSolarized.vim │ │ └── init.vim │ ├── polybar │ │ ├── config │ │ ├── launch.sh │ │ ├── polyhide.sh │ │ └── scripts │ │ │ ├── player-mpris-simple.sh │ │ │ └── pulseaudio-control.sh │ └── rofi │ │ ├── applauncher.rasi │ │ ├── powermenu-theme.rasi │ │ ├── scripts │ │ ├── i3_empty_workspace.sh │ │ └── powermenu.sh │ │ └── themes │ │ ├── Pop-Dark.rasi │ │ ├── Pop-Dark2.rasi │ │ ├── arc-red-dark.rasi │ │ ├── archlabs-shadow.rasi │ │ ├── archlabsdark.rasi │ │ ├── fancy.rasi │ │ ├── flat-orange.rasi │ │ ├── material.rasi │ │ ├── onedark.rasi │ │ ├── oxide.rasi │ │ ├── rezlooks.rasi │ │ ├── ribbon.rasi │ │ ├── shadow-sidebar.rasi │ │ ├── shadow.rasi │ │ ├── sidetab.rasi │ │ ├── slate-bordered.rasi │ │ ├── slate.rasi │ │ └── solarized-darker.rasi ├── .config_ │ ├── bspwm │ │ ├── bspwm-rules │ │ ├── bspwmrc │ │ └── bspwmrc (copy 1) │ ├── compton │ │ ├── compton (copy 1).conf │ │ └── compton.conf │ ├── kitty │ │ ├── colors.conf │ │ ├── kitty.conf │ │ └── kitty.conf.save │ ├── neofetch │ │ └── config │ ├── nvim │ │ ├── autoload │ │ │ └── lightline │ │ │ │ └── colorscheme │ │ │ │ └── lena.vim │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ ├── NeoSolarized.vim │ │ │ └── lena.vim │ │ ├── init.vim │ │ └── statusline.vim │ ├── polybar │ │ ├── config │ │ ├── config (copy 1) │ │ ├── config.bottom.png │ │ ├── config.top.png │ │ ├── config1 │ │ ├── config2.top.png │ │ ├── config3 │ │ ├── config_top_fixed │ │ ├── config_top_fixed_icons │ │ ├── launch.sh │ │ └── scripts │ │ │ ├── hwinfo.pl │ │ │ ├── load.pl │ │ │ ├── memory.pl │ │ │ ├── vpn.pl │ │ │ └── weather.py │ ├── ranger │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.opt-1.pyc │ │ │ │ ├── devicons.cpython-38.opt-1.pyc │ │ │ │ └── devicons_linemode.cpython-38.opt-1.pyc │ │ │ ├── devicons.py │ │ │ └── devicons_linemode.py │ │ ├── rc (copy 1).conf │ │ ├── rc.conf │ │ ├── rifle.conf │ │ └── scope.sh │ ├── rofi │ │ └── config.rasi │ └── sxhkd │ │ └── sxhkdrc ├── .p10k.zsh ├── .zshrc ├── .zshrc_ └── spotify_status.py ├── xmonad_solid ├── .config │ ├── bspwm │ │ ├── bspwm-rules │ │ ├── bspwmrc │ │ └── bspwmrc.backup │ ├── cava │ │ └── config │ ├── dunst │ │ ├── dunstrc │ │ └── random-schemes.sh │ ├── kak-lsp │ │ └── kak-lsp.toml │ ├── kak │ │ └── kakrc │ ├── kitty │ │ ├── colors.conf │ │ ├── kitty.conf │ │ └── kitty.conf.save │ ├── mpv │ │ ├── mpv.conf │ │ └── mpvtube_playlists │ ├── neofetch │ │ └── config │ ├── nvim │ │ ├── autoload │ │ │ └── lightline │ │ │ │ └── colorscheme │ │ │ │ └── lena.vim │ │ ├── backup │ │ │ ├── init.vim │ │ │ └── statusline.vim │ │ ├── colors │ │ │ ├── Molokai.vim │ │ │ ├── NeoSolarized.vim │ │ │ ├── lena.vim │ │ │ └── summerfruit256.vim │ │ ├── init.vim │ │ └── statusline.vim │ ├── picom │ │ ├── picom-backup.conf │ │ └── picom.conf │ ├── polybar │ │ ├── config │ │ ├── launch.sh │ │ └── scripts │ │ │ ├── hwinfo.pl │ │ │ ├── load.pl │ │ │ ├── memory.pl │ │ │ ├── vpn.pl │ │ │ └── weather.py │ ├── ranger │ │ ├── plugins │ │ │ ├── __init__.py │ │ │ ├── __init__.pyo │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.opt-1.pyc │ │ │ │ ├── devicons.cpython-38.opt-1.pyc │ │ │ │ └── devicons_linemode.cpython-38.opt-1.pyc │ │ │ ├── devicons.py │ │ │ ├── devicons.pyo │ │ │ ├── devicons_linemode.py │ │ │ └── devicons_linemode.pyo │ │ ├── rc.conf │ │ ├── rifle.conf │ │ └── scope.sh │ ├── rofi │ │ ├── colors.rasi │ │ └── config.rasi │ ├── sxhkd │ │ └── sxhkdrc │ └── zsh │ │ ├── .p10k.zsh │ │ ├── .zcompdump │ │ ├── .zcompdump.zwc │ │ ├── .zhistory │ │ ├── .zim │ │ ├── .latest_version │ │ ├── init.zsh │ │ ├── init.zsh.old │ │ ├── init.zsh.zwc │ │ ├── init.zsh.zwc.old │ │ ├── login_init.zsh │ │ ├── login_init.zsh.zwc │ │ ├── zimfw.zsh │ │ └── zimfw.zsh.zwc │ │ ├── .zimrc │ │ ├── .zlogin │ │ ├── .zlogin.zwc │ │ ├── .zprofile │ │ ├── .zprofile.zwc │ │ ├── .zshenv │ │ ├── .zshenv.zwc │ │ ├── .zshrc │ │ ├── .zshrc.zwc │ │ ├── .zshrc.zwc.old │ │ ├── alias.zsh │ │ ├── config │ │ ├── alias.zsh │ │ ├── history.zsh │ │ ├── misc │ │ ├── p10k.zsh │ │ ├── user_config.zsh │ │ └── zim_config.zsh │ │ ├── misc │ │ └── user_config.zsh └── .tmux.conf └── xres /Bspwm_forest/.config/bspwm/bspwm-rules: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | id="${1?}" \ 4 | instance="$3" \ 5 | class="$2"; 6 | 7 | case "$class" in 8 | (foo) 9 | bar;; 10 | ("") 11 | unset -v _NET_WM_PID; 12 | . /dev/fd/0 2>/dev/null </dev/null)" in 22 | (spotify) 23 | echo desktop=^3 state=pseudo_tiled follow=on center=on;; 24 | esac;; 25 | esac; 26 | 27 | 28 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/dunst/bspwm-dunstrc: -------------------------------------------------------------------------------- 1 | /home/tanish2002/.cache/wal/bspwm-dunstrc -------------------------------------------------------------------------------- /Bspwm_forest/.config/dunst/random-schemes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | 4 | for (( i = 0; i < 10; )); do 5 | 6 | for (( i = 0; i < 10;)); do 7 | wal -i $HOME/Pictures/Wallpapers -o wal-set; 8 | sleep 5; 9 | done 10 | i = 0; 11 | done 12 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/kitty/colors.conf: -------------------------------------------------------------------------------- 1 | background #3A3343 2 | foreground #ECDFE1 3 | cursor #ECDFE1 4 | color0 #565575 5 | color1 #FF8080 6 | color2 #95FFA4 7 | color3 #FFE9AA 8 | color4 #C262D5 9 | color5 #C991E1 10 | color6 #AAFFE4 11 | color7 #CBE3E7 12 | color8 #100E23 13 | color9 #FF5485 14 | color10 #62D196 15 | color11 #FFB378 16 | color12 #CD99D7 17 | color13 #906CFF 18 | color14 #63F2F1 19 | color15 #A6B3CC 20 | 21 | 22 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | input-ipc-server= /tmp/mpvsocket 2 | script= /home/tanish2002/bin/mpv-notify1.lua 3 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/mpv/mpvtube_playlists: -------------------------------------------------------------------------------- 1 | Sangeet @https://www.youtube.com/playlist?list=PL88kQYE_UywBzqdk0S9QrTwrGk6sTorBP 2 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/polybar/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Terminate already running bar instances 4 | killall -q polybar 5 | 6 | int=$(iwgetid | getn 1) 7 | echo ${int} 8 | 9 | sed -i "s/interface = .*/interface = \"$int\"/g" ~/.config/polybar/config 10 | 11 | 12 | # Launch bar1 and bar2 13 | polybar white & 14 | #polybar bar2 & 15 | 16 | echo "Bars launched..." 17 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/polybar/scripts/hwinfo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin.env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/polybar/scripts/load.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | my $load = capture { system q{uptime | awk '{print $(NF-2)}'} }; 10 | $load =~ s/\,\s*$//g; 11 | 12 | say " $load"; -------------------------------------------------------------------------------- /Bspwm_forest/.config/polybar/scripts/memory.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | sub memory() { 8 | my $free = capture{system q{cat /proc/meminfo | grep MemFree | awk '{printf $2}'}}; 9 | my $total = capture{system q{cat /proc/meminfo | grep MemTotal | awk '{printf $2}'}}; 10 | 11 | my $percent = $free / $total * 100; 12 | print(" ".int($percent) . "%\n"); 13 | } 14 | 15 | memory(); -------------------------------------------------------------------------------- /Bspwm_forest/.config/polybar/scripts/vpn.pl: -------------------------------------------------------------------------------- 1 | #!/usr/share/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | sub check_status { 10 | if ( -d "/proc/sys/net/ipv4/conf/tun0" ) { 11 | return 1; 12 | } elsif ( -d "/proc/sys/net/ipv4/conf/ppp0" ) { 13 | return 1; 14 | } else { 15 | return 0; 16 | } 17 | } 18 | 19 | sub proc_status { 20 | if (check_status == 1) { 21 | say(" On"); 22 | } else { 23 | say(" Off"); 24 | } 25 | } 26 | 27 | proc_status(); -------------------------------------------------------------------------------- /Bspwm_forest/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /Bspwm_forest/.config/ranger/plugins/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/ranger/plugins/__init__.pyo -------------------------------------------------------------------------------- /Bspwm_forest/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_forest/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_forest/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_forest/.config/ranger/plugins/devicons.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/ranger/plugins/devicons.pyo -------------------------------------------------------------------------------- /Bspwm_forest/.config/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- 1 | import ranger.api 2 | from ranger.core.linemode import LinemodeBase 3 | from .devicons import * 4 | 5 | @ranger.api.register_linemode 6 | class DevIconsLinemode(LinemodeBase): 7 | name = "devicons" 8 | 9 | uses_metadata = False 10 | 11 | def filetitle(self, file, metadata): 12 | return devicon(file) + ' ' + file.relative_path 13 | 14 | @ranger.api.register_linemode 15 | class DevIconsLinemodeFile(LinemodeBase): 16 | name = "filename" 17 | 18 | def filetitle(self, file, metadata): 19 | return devicon(file) + ' ' + file.relative_path 20 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/ranger/plugins/devicons_linemode.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/ranger/plugins/devicons_linemode.pyo -------------------------------------------------------------------------------- /Bspwm_forest/.config/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set show_hidden true 2 | set preview_images true 3 | set preview_images_method ueberzug 4 | set w3m_delay 0.1 5 | map shell dragon-drag-and-drop -a -x %p 6 | # a plugin that adds file glyphs / icon support to Ranger: 7 | # https://github.com/alexanderjeurissen/ranger_devicons 8 | default_linemode devicons 9 | map bw shell wal -i %f -o wal-set && cp %f ~/.config/wall.png && sleep 0.1s && notify-send "Theme changed" -i ~/.config/wall.png -t 3000 10 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zcompdump.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zcompdump.zwc -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zhistory -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zim/.latest_version: -------------------------------------------------------------------------------- 1 | 1.3.2 2 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zim/init.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zim/init.zsh.zwc -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zim/init.zsh.zwc.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zim/init.zsh.zwc.old -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zim/login_init.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zim/login_init.zsh.zwc -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zim/zimfw.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zim/zimfw.zsh.zwc -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zlogin: -------------------------------------------------------------------------------- 1 | # Start configuration added by Zim install {{{ 2 | # 3 | # User configuration sourced by login shells 4 | # 5 | 6 | # Initialize Zim 7 | source ${ZIM_HOME}/login_init.zsh -q &! 8 | # }}} End configuration added by Zim install 9 | 10 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zlogin.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zlogin.zwc -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zprofile: -------------------------------------------------------------------------------- 1 | 2 | export PATH="$HOME/.cargo/bin:$PATH" 3 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zprofile.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zprofile.zwc -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zshenv: -------------------------------------------------------------------------------- 1 | # Start configuration added by Zim install {{{ 2 | # 3 | # User configuration sourced by all invocations of the shell 4 | # 5 | 6 | # Define Zim location 7 | : ${ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim} 8 | # }}} End configuration added by Zim install 9 | 10 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zshenv.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zshenv.zwc -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zshrc: -------------------------------------------------------------------------------- 1 | source $HOME/.config/zsh/config/zim_config.zsh 2 | source $HOME/.config/zsh/config/user_config.zsh 3 | source $HOME/.config/zsh/config/alias.zsh 4 | source $HOME/.config/zsh/config/history.zsh 5 | 6 | cd $HOME 7 | 8 | # To customize prompt, run `p10k configure` or edit ~/.config/zsh/config/p10k.zsh. 9 | source ~/.config/zsh/config/p10k.zsh 10 | -------------------------------------------------------------------------------- /Bspwm_forest/.config/zsh/.zshrc.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_forest/.config/zsh/.zshrc.zwc -------------------------------------------------------------------------------- /Bspwm_lake/.config/bspwm/bspwm-rules: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | id="${1?}" \ 4 | instance="$3" \ 5 | class="$2"; 6 | 7 | case "$class" in 8 | (foo) 9 | bar;; 10 | ("") 11 | unset -v _NET_WM_PID; 12 | . /dev/fd/0 2>/dev/null </dev/null)" in 22 | (spotify) 23 | echo desktop=^3 state=pseudo_tiled follow=on center=on;; 24 | esac;; 25 | esac; 26 | 27 | 28 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/dunst/bspwm-dunstrc: -------------------------------------------------------------------------------- 1 | /home/tanish2002/.cache/wal/bspwm-dunstrc -------------------------------------------------------------------------------- /Bspwm_lake/.config/dunst/random-schemes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | 4 | for (( i = 0; i < 10; )); do 5 | 6 | for (( i = 0; i < 10;)); do 7 | wal -i $HOME/Pictures/Wallpapers -o wal-set; 8 | sleep 5; 9 | done 10 | i = 0; 11 | done 12 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/kitty/colors.conf: -------------------------------------------------------------------------------- 1 | background #3A3343 2 | foreground #ECDFE1 3 | cursor #ECDFE1 4 | color0 #565575 5 | color1 #FF8080 6 | color2 #95FFA4 7 | color3 #FFE9AA 8 | color4 #C262D5 9 | color5 #C991E1 10 | color6 #AAFFE4 11 | color7 #CBE3E7 12 | color8 #100E23 13 | color9 #FF5485 14 | color10 #62D196 15 | color11 #FFB378 16 | color12 #CD99D7 17 | color13 #906CFF 18 | color14 #63F2F1 19 | color15 #A6B3CC 20 | 21 | 22 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | input-ipc-server= /tmp/mpvsocket 2 | 3 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/mpv/mpvtube_playlists: -------------------------------------------------------------------------------- 1 | Sangeet @https://www.youtube.com/playlist?list=PL88kQYE_UywBzqdk0S9QrTwrGk6sTorBP 2 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/nvim/coc-settings.json: -------------------------------------------------------------------------------- 1 | { 2 | // make vim select first item on completion 3 | "suggest.noselect": false 4 | } 5 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/polybar/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Terminate already running bar instances 4 | killall -q polybar 5 | 6 | int=$(iwgetid | getn 1) 7 | echo ${int} 8 | 9 | sed -i "s/interface = .*/interface = \"$int\"/g" ~/.config/polybar/config 10 | 11 | 12 | # Launch bar1 and bar2 13 | polybar white & 14 | #polybar bar2 & 15 | 16 | echo "Bars launched..." 17 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/polybar/scripts/hwinfo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin.env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/polybar/scripts/load.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | my $load = capture { system q{uptime | awk '{print $(NF-2)}'} }; 10 | $load =~ s/\,\s*$//g; 11 | 12 | say " $load"; -------------------------------------------------------------------------------- /Bspwm_lake/.config/polybar/scripts/memory.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | sub memory() { 8 | my $free = capture{system q{cat /proc/meminfo | grep MemFree | awk '{printf $2}'}}; 9 | my $total = capture{system q{cat /proc/meminfo | grep MemTotal | awk '{printf $2}'}}; 10 | 11 | my $percent = $free / $total * 100; 12 | print(" ".int($percent) . "%\n"); 13 | } 14 | 15 | memory(); -------------------------------------------------------------------------------- /Bspwm_lake/.config/polybar/scripts/vpn.pl: -------------------------------------------------------------------------------- 1 | #!/usr/share/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | sub check_status { 10 | if ( -d "/proc/sys/net/ipv4/conf/tun0" ) { 11 | return 1; 12 | } elsif ( -d "/proc/sys/net/ipv4/conf/ppp0" ) { 13 | return 1; 14 | } else { 15 | return 0; 16 | } 17 | } 18 | 19 | sub proc_status { 20 | if (check_status == 1) { 21 | say(" On"); 22 | } else { 23 | say(" Off"); 24 | } 25 | } 26 | 27 | proc_status(); -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/__init__.pyo -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/__pycache__/devicons.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/__pycache__/devicons.cpython-37.pyc -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-37.pyc -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/devicons.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/devicons.pyo -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- 1 | import ranger.api 2 | from ranger.core.linemode import LinemodeBase 3 | from .devicons import * 4 | 5 | @ranger.api.register_linemode 6 | class DevIconsLinemode(LinemodeBase): 7 | name = "devicons" 8 | 9 | uses_metadata = False 10 | 11 | def filetitle(self, file, metadata): 12 | return devicon(file) + ' ' + file.relative_path 13 | 14 | @ranger.api.register_linemode 15 | class DevIconsLinemodeFile(LinemodeBase): 16 | name = "filename" 17 | 18 | def filetitle(self, file, metadata): 19 | return devicon(file) + ' ' + file.relative_path 20 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/plugins/devicons_linemode.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/ranger/plugins/devicons_linemode.pyo -------------------------------------------------------------------------------- /Bspwm_lake/.config/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set show_hidden true 2 | set preview_images true 3 | set preview_images_method ueberzug 4 | set w3m_delay 0.1 5 | map shell dragon-drag-and-drop -a -x %p 6 | # a plugin that adds file glyphs / icon support to Ranger: 7 | # https://github.com/alexanderjeurissen/ranger_devicons 8 | default_linemode devicons 9 | map bw shell wal -i %f -o wal-set && cp %f ~/.config/wall.png && sleep 0.1s && notify-send "Theme changed" -i ~/.config/wall.png -t 3000 10 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zcompdump.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zcompdump.zwc -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zhistory -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zim/.latest_version: -------------------------------------------------------------------------------- 1 | 1.3.2 2 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zim/init.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zim/init.zsh.zwc -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zim/init.zsh.zwc.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zim/init.zsh.zwc.old -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zim/login_init.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zim/login_init.zsh.zwc -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zim/zimfw.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zim/zimfw.zsh.zwc -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zlogin: -------------------------------------------------------------------------------- 1 | # Start configuration added by Zim install {{{ 2 | # 3 | # User configuration sourced by login shells 4 | # 5 | 6 | # Initialize Zim 7 | source ${ZIM_HOME}/login_init.zsh -q &! 8 | # }}} End configuration added by Zim install 9 | 10 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zlogin.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zlogin.zwc -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zprofile: -------------------------------------------------------------------------------- 1 | 2 | export PATH="$HOME/.cargo/bin:$PATH" 3 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zprofile.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zprofile.zwc -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zshenv: -------------------------------------------------------------------------------- 1 | # Start configuration added by Zim install {{{ 2 | # 3 | # User configuration sourced by all invocations of the shell 4 | # 5 | 6 | # Define Zim location 7 | : ${ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim} 8 | # }}} End configuration added by Zim install 9 | 10 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zshenv.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zshenv.zwc -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zshrc: -------------------------------------------------------------------------------- 1 | source $HOME/.config/zsh/config/zim_config.zsh 2 | source $HOME/.config/zsh/config/user_config.zsh 3 | source $HOME/.config/zsh/config/alias.zsh 4 | source $HOME/.config/zsh/config/history.zsh 5 | 6 | cd $HOME 7 | 8 | # To customize prompt, run `p10k configure` or edit ~/.config/zsh/config/p10k.zsh. 9 | source ~/.config/zsh/config/p10k.zsh 10 | -------------------------------------------------------------------------------- /Bspwm_lake/.config/zsh/.zshrc.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_lake/.config/zsh/.zshrc.zwc -------------------------------------------------------------------------------- /Bspwm_nier/.config/bspwm/bspwm-rules: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | id="${1?}" \ 4 | instance="$3" \ 5 | class="$2"; 6 | 7 | case "$class" in 8 | (foo) 9 | bar;; 10 | ("") 11 | unset -v _NET_WM_PID; 12 | . /dev/fd/0 2>/dev/null </dev/null)" in 22 | (spotify) 23 | echo desktop=^3 state=pseudo_tiled follow=on center=on;; 24 | esac;; 25 | esac; 26 | 27 | 28 | -------------------------------------------------------------------------------- /Bspwm_nier/.config/dunst/random-schemes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | 4 | for (( i = 0; i < 10; )); do 5 | 6 | for (( i = 0; i < 10;)); do 7 | wal -i $HOME/Pictures/Wallpapers -o wal-set; 8 | sleep 5; 9 | done 10 | i = 0; 11 | done 12 | -------------------------------------------------------------------------------- /Bspwm_nier/.config/kitty/colors.conf: -------------------------------------------------------------------------------- 1 | background #3A3343 2 | foreground #ECDFE1 3 | cursor #ECDFE1 4 | color0 #565575 5 | color1 #FF8080 6 | color2 #95FFA4 7 | color3 #FFE9AA 8 | color4 #C262D5 9 | color5 #C991E1 10 | color6 #AAFFE4 11 | color7 #CBE3E7 12 | color8 #100E23 13 | color9 #FF5485 14 | color10 #62D196 15 | color11 #FFB378 16 | color12 #CD99D7 17 | color13 #906CFF 18 | color14 #63F2F1 19 | color15 #A6B3CC 20 | 21 | 22 | -------------------------------------------------------------------------------- /Bspwm_nier/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | input-ipc-server= /tmp/mpvsocket 2 | script= /home/tanish2002/bin/mpv-notify1.lua 3 | -------------------------------------------------------------------------------- /Bspwm_nier/.config/mpv/mpvtube_playlists: -------------------------------------------------------------------------------- 1 | Sangeet @https://www.youtube.com/playlist?list=PL88kQYE_UywBzqdk0S9QrTwrGk6sTorBP 2 | -------------------------------------------------------------------------------- /Bspwm_nier/.config/polybar/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Terminate already running bar instances 4 | killall -q polybar 5 | 6 | int=$(iwgetid | getn 1) 7 | echo ${int} 8 | 9 | sed -i "s/interface = .*/interface = \"$int\"/g" ~/.config/polybar/config 10 | 11 | 12 | # Launch bar1 and bar2 13 | polybar bottom & 14 | polybar top & 15 | 16 | echo "Bars launched..." 17 | -------------------------------------------------------------------------------- /Bspwm_nier/.config/polybar/scripts/hwinfo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin.env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | -------------------------------------------------------------------------------- /Bspwm_nier/.config/polybar/scripts/load.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | my $load = capture { system q{uptime | awk '{print $(NF-2)}'} }; 10 | $load =~ s/\,\s*$//g; 11 | 12 | say " $load"; -------------------------------------------------------------------------------- /Bspwm_nier/.config/polybar/scripts/memory.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | sub memory() { 8 | my $free = capture{system q{cat /proc/meminfo | grep MemFree | awk '{printf $2}'}}; 9 | my $total = capture{system q{cat /proc/meminfo | grep MemTotal | awk '{printf $2}'}}; 10 | 11 | my $percent = $free / $total * 100; 12 | print(" ".int($percent) . "%\n"); 13 | } 14 | 15 | memory(); -------------------------------------------------------------------------------- /Bspwm_nier/.config/polybar/scripts/vpn.pl: -------------------------------------------------------------------------------- 1 | #!/usr/share/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | sub check_status { 10 | if ( -d "/proc/sys/net/ipv4/conf/tun0" ) { 11 | return 1; 12 | } elsif ( -d "/proc/sys/net/ipv4/conf/ppp0" ) { 13 | return 1; 14 | } else { 15 | return 0; 16 | } 17 | } 18 | 19 | sub proc_status { 20 | if (check_status == 1) { 21 | say(" On"); 22 | } else { 23 | say(" Off"); 24 | } 25 | } 26 | 27 | proc_status(); -------------------------------------------------------------------------------- /Bspwm_nier/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_nier/.config/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /Bspwm_nier/.config/ranger/plugins/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_nier/.config/ranger/plugins/__init__.pyo -------------------------------------------------------------------------------- /Bspwm_nier/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_nier/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_nier/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_nier/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_nier/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_nier/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_nier/.config/ranger/plugins/devicons.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_nier/.config/ranger/plugins/devicons.pyo -------------------------------------------------------------------------------- /Bspwm_nier/.config/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- 1 | import ranger.api 2 | from ranger.core.linemode import LinemodeBase 3 | from .devicons import * 4 | 5 | @ranger.api.register_linemode 6 | class DevIconsLinemode(LinemodeBase): 7 | name = "devicons" 8 | 9 | uses_metadata = False 10 | 11 | def filetitle(self, file, metadata): 12 | return devicon(file) + ' ' + file.relative_path 13 | 14 | @ranger.api.register_linemode 15 | class DevIconsLinemodeFile(LinemodeBase): 16 | name = "filename" 17 | 18 | def filetitle(self, file, metadata): 19 | return devicon(file) + ' ' + file.relative_path 20 | -------------------------------------------------------------------------------- /Bspwm_nier/.config/ranger/plugins/devicons_linemode.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_nier/.config/ranger/plugins/devicons_linemode.pyo -------------------------------------------------------------------------------- /Bspwm_nier/.config/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set show_hidden true 2 | set preview_images true 3 | set preview_images_method ueberzug 4 | set w3m_delay 0.1 5 | map shell dragon-drag-and-drop -a -x %p 6 | # a plugin that adds file glyphs / icon support to Ranger: 7 | # https://github.com/alexanderjeurissen/ranger_devicons 8 | default_linemode devicons 9 | map bw shell wal -i %f -o wal-set && cp %f ~/.config/wall.png && sleep 0.1s && notify-send "Theme changed" -i ~/.config/wall.png -t 3000 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/bspwm/bspwm-rules: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | id="${1?}" \ 4 | instance="$3" \ 5 | class="$2"; 6 | 7 | case "$class" in 8 | (foo) 9 | bar;; 10 | ("") 11 | unset -v _NET_WM_PID; 12 | . /dev/fd/0 2>/dev/null </dev/null)" in 22 | (spotify) 23 | echo desktop=^3 state=pseudo_tiled follow=on center=on;; 24 | esac;; 25 | esac; 26 | 27 | 28 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/dunst/bspwm-dunstrc: -------------------------------------------------------------------------------- 1 | /home/tanish2002/.cache/wal/bspwm-dunstrc -------------------------------------------------------------------------------- /Bspwm_pywal/.config/dunst/random-schemes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | 4 | for (( i = 0; i < 10; )); do 5 | 6 | for (( i = 0; i < 10;)); do 7 | wal -i $HOME/Pictures/Wallpapers -o wal-set; 8 | sleep 5; 9 | done 10 | i = 0; 11 | done 12 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/kitty/colors.conf: -------------------------------------------------------------------------------- 1 | background #3A3343 2 | foreground #ECDFE1 3 | cursor #ECDFE1 4 | color0 #565575 5 | color1 #FF8080 6 | color2 #95FFA4 7 | color3 #FFE9AA 8 | color4 #C262D5 9 | color5 #C991E1 10 | color6 #AAFFE4 11 | color7 #CBE3E7 12 | color8 #100E23 13 | color9 #FF5485 14 | color10 #62D196 15 | color11 #FFB378 16 | color12 #CD99D7 17 | color13 #906CFF 18 | color14 #63F2F1 19 | color15 #A6B3CC 20 | 21 | 22 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | input-ipc-server= ~/.config/mpv/mpvsocket 2 | script= /home/tanish2002/bin/mpv-notify1.lua 3 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/mpv/mpvtube_playlists: -------------------------------------------------------------------------------- 1 | Sangeet @https://www.youtube.com/playlist?list=PL88kQYE_UywBzqdk0S9QrTwrGk6sTorBP 2 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/SimpylFold/.vintrc.yaml: -------------------------------------------------------------------------------- 1 | policies: 2 | ProhibitImplicitScopeVariable: 3 | enabled: false 4 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/SimpylFold/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the list of SimpylFold authors for copyright purposes. 2 | # 3 | # This does not necessarily list everyone who has contributed code, since in 4 | # some cases, their employer may be the copyright holder. To see the full list 5 | # of contributors, see the revision history in source control. 6 | 7 | Taylor Hedberg 8 | Google Inc. 9 | nfnty 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/SimpylFold/ftplugin/cython/SimpylFold.vim: -------------------------------------------------------------------------------- 1 | if exists('b:loaded_SimpylFold') 2 | finish 3 | endif 4 | let b:loaded_SimpylFold = 1 5 | 6 | call SimpylFold#BufferInit() 7 | setlocal foldexpr=SimpylFold#FoldExpr(v:lnum) 8 | setlocal foldmethod=expr 9 | 10 | augroup SimpylFold 11 | autocmd TextChanged,InsertLeave call SimpylFold#Recache() 12 | augroup END 13 | 14 | if exists('g:SimpylFold_docstring_preview') && g:SimpylFold_docstring_preview 15 | setlocal foldtext=foldtext()\ .\ SimpylFold#FoldText() 16 | endif 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/SimpylFold/ftplugin/python/SimpylFold.vim: -------------------------------------------------------------------------------- 1 | if exists('b:loaded_SimpylFold') 2 | finish 3 | endif 4 | let b:loaded_SimpylFold = 1 5 | 6 | call SimpylFold#BufferInit() 7 | setlocal foldexpr=SimpylFold#FoldExpr(v:lnum) 8 | setlocal foldmethod=expr 9 | 10 | augroup SimpylFold 11 | autocmd TextChanged,InsertLeave call SimpylFold#Recache() 12 | augroup END 13 | 14 | if exists('g:SimpylFold_docstring_preview') && g:SimpylFold_docstring_preview 15 | setlocal foldtext=foldtext()\ .\ SimpylFold#FoldText() 16 | endif 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/SimpylFold/plugin/SimpylFold.vim: -------------------------------------------------------------------------------- 1 | if exists('g:loaded_SimpylFold') 2 | finish 3 | endif 4 | let g:loaded_SimpylFold = 1 5 | 6 | command! -bang SimpylFoldDocstrings let b:SimpylFold_fold_docstring = 1 | call SimpylFold#Recache() 7 | command! -bang SimpylFoldImports let b:SimpylFold_fold_import = 1 | call SimpylFold#Recache() 8 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/auto-pairs/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/css.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('css') 2 | finish 3 | endif 4 | 5 | hi! link cssAttrComma Delimiter 6 | hi! link cssAttrRegion DraculaPink 7 | hi! link cssAttributeSelector DraculaGreenItalic 8 | hi! link cssBraces Delimiter 9 | hi! link cssFunctionComma Delimiter 10 | hi! link cssNoise DraculaPink 11 | hi! link cssProp DraculaCyan 12 | hi! link cssPseudoClass DraculaPink 13 | hi! link cssPseudoClassId DraculaGreenItalic 14 | hi! link cssUnitDecorators DraculaPink 15 | hi! link cssVendor DraculaGreenItalic 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/gitcommit.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('gitcommit') 2 | finish 3 | endif 4 | 5 | " The following two are misnomers. Colors are correct. 6 | hi! link diffFile DraculaGreen 7 | hi! link diffNewFile DraculaRed 8 | 9 | hi! link diffAdded DraculaGreen 10 | hi! link diffLine DraculaCyanItalic 11 | hi! link diffRemoved DraculaRed 12 | 13 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/html.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('html') 2 | finish 3 | endif 4 | 5 | hi! link htmlTag DraculaFg 6 | hi! link htmlArg DraculaGreenItalic 7 | hi! link htmlTitle DraculaFg 8 | hi! link htmlH1 DraculaFg 9 | hi! link htmlSpecialChar DraculaPurple 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/json.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('json') 2 | finish 3 | endif 4 | 5 | hi! link jsonKeyword DraculaCyan 6 | hi! link jsonKeywordMatch DraculaPink 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/ocaml.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('ocaml') 2 | finish 3 | endif 4 | 5 | hi! link ocamlModule Type 6 | hi! link ocamlModPath Normal 7 | hi! link ocamlLabel DraculaOrangeItalic 8 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/php.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('php') 2 | finish 3 | endif 4 | 5 | hi! link phpClass Type 6 | hi! link phpClasses Type 7 | hi! link phpDocTags DraculaCyanItalic 8 | hi! link phpFunction Function 9 | hi! link phpParent Normal 10 | hi! link phpSpecialFunction DraculaCyan 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/plantuml.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('plantuml') 2 | finish 3 | endif 4 | 5 | hi! link plantumlClassPrivate SpecialKey 6 | hi! link plantumlClassProtected DraculaOrange 7 | hi! link plantumlClassPublic Function 8 | hi! link plantumlColonLine String 9 | hi! link plantumlDirectedOrVerticalArrowLR Constant 10 | hi! link plantumlDirectedOrVerticalArrowRL Constant 11 | hi! link plantumlHorizontalArrow Constant 12 | hi! link plantumlSkinParamKeyword DraculaCyan 13 | hi! link plantumlTypeKeyword Keyword 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/python.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('python') 2 | finish 3 | endif 4 | 5 | hi! link pythonBuiltinObj Type 6 | hi! link pythonBuiltinObject Type 7 | hi! link pythonBuiltinType Type 8 | hi! link pythonClassVar DraculaPurpleItalic 9 | hi! link pythonExClass Type 10 | hi! link pythonNone Type 11 | hi! link pythonRun Comment 12 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/ruby.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('ruby') 2 | finish 3 | endif 4 | 5 | if ! exists('g:ruby_operators') 6 | let g:ruby_operators=1 7 | endif 8 | 9 | hi! link rubyBlockArgument DraculaOrangeItalic 10 | hi! link rubyBlockParameter DraculaOrangeItalic 11 | hi! link rubyCurlyBlock DraculaPink 12 | hi! link rubyGlobalVariable DraculaPurple 13 | hi! link rubyInstanceVariable DraculaPurpleItalic 14 | hi! link rubyInterpolationDelimiter DraculaPink 15 | hi! link rubyRegexpDelimiter DraculaRed 16 | hi! link rubyStringDelimiter DraculaYellow 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/rust.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('rust') 2 | finish 3 | endif 4 | 5 | hi! link rustCommentLineDoc Comment 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/sass.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('sass') 2 | finish 3 | endif 4 | 5 | hi! link sassClass cssClassName 6 | hi! link sassClassChar cssClassNameDot 7 | hi! link sassId cssIdentifier 8 | hi! link sassIdChar cssIdentifier 9 | hi! link sassInterpolationDelimiter DraculaPink 10 | hi! link sassMixinName Function 11 | hi! link sassProperty cssProp 12 | hi! link sassVariableAssignment Operator 13 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/sh.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('bash', 'ksh', 'posix', 'sh') 2 | finish 3 | endif 4 | 5 | hi! link shCommandSub NONE 6 | hi! link shEscape DraculaRed 7 | hi! link shParen NONE 8 | hi! link shParenError NONE 9 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('typescriptreact') 2 | finish 3 | endif 4 | 5 | runtime! syntax/typescript.vim 6 | 7 | hi! link tsxAttrib DraculaGreenItalic 8 | hi! link tsxEqual Operator 9 | hi! link tsxIntrinsicTagName Keyword 10 | hi! link tsxTagName Type 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/vim.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('vim') 2 | finish 3 | endif 4 | 5 | hi! link vimAutoCmdSfxList Type 6 | hi! link vimAutoEventList Type 7 | hi! link vimEnvVar Constant 8 | hi! link vimFunction Function 9 | hi! link vimHiBang Keyword 10 | hi! link vimOption Type 11 | hi! link vimSetMod Keyword 12 | hi! link vimSetSep Delimiter 13 | hi! link vimUserAttrbCmpltFunc Function 14 | hi! link vimUserFunc Function 15 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/xml.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('xml') 2 | finish 3 | endif 4 | 5 | hi! link xmlAttrib DraculaGreenItalic 6 | hi! link xmlEqual Operator 7 | hi! link xmlTag Delimiter 8 | hi! link xmlTagName Statement 9 | 10 | " Fixes missing highlight over end tags 11 | syn region xmlTagName 12 | \ matchgroup=xmlTag start=+"']\@=+ 13 | \ matchgroup=xmlTag end=+>+ 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/after/syntax/yaml.vim: -------------------------------------------------------------------------------- 1 | if dracula#should_abort('yaml') 2 | finish 3 | endif 4 | 5 | hi! link yamlAlias DraculaGreenItalicUnderline 6 | hi! link yamlAnchor DraculaPinkItalic 7 | hi! link yamlBlockMappingKey DraculaCyan 8 | hi! link yamlFlowCollection DraculaPink 9 | hi! link yamlFlowIndicator Delimiter 10 | hi! link yamlNodeTag DraculaPink 11 | hi! link yamlPlainScalar DraculaYellow 12 | 13 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/dracula/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/nvim/plugged/dracula/screenshot.png -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/gruvbox/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gruvbox", 3 | "version": "2.0.0", 4 | "repository": "git@github.com:morhetz/gruvbox.git", 5 | "author": "Pavel Pertsev ", 6 | "license": "MIT", 7 | "vim": { 8 | "opt": true 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/limelight.vim/.travis.yml: -------------------------------------------------------------------------------- 1 | language: vim 2 | 3 | before_script: | 4 | git clone https://github.com/junegunn/vader.vim.git 5 | git clone https://github.com/junegunn/seoul256.vim.git 6 | 7 | script: | 8 | vim -Nu <(cat << VIMRC 9 | set rtp+=vader.vim 10 | set rtp+=seoul256.vim 11 | set rtp+=. 12 | VIMRC) -c 'silent Vader! test/*' > /dev/null 13 | 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/nerdtree/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Feature Request" 3 | about: "What new feature are you requesting for NERDTree?" 4 | labels: "feature request" 5 | --- 6 | 7 | #### Description 8 | 9 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/nerdtree/.github/workflows/vint.yml: -------------------------------------------------------------------------------- 1 | name: Vint 2 | on: [push, pull_request] 3 | jobs: 4 | vint: 5 | strategy: 6 | fail-fast: false 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Checkout 10 | uses: actions/checkout@master 11 | - name: Run vint with reviewdog 12 | uses: reviewdog/action-vint@v1.0.1 13 | with: 14 | github_token: ${{ secrets.github_token }} 15 | reporter: github-pr-review 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/nerdtree/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | tags 4 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/nerdtree/.vintrc.yaml: -------------------------------------------------------------------------------- 1 | cmdargs: 2 | severity: style_problem 3 | color: true 4 | env: 5 | neovim: false 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/nerdtree/LICENCE: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2004 Sam Hocevar 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/nerdtree/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/nerdtree/lib/nerdtree/event.vim: -------------------------------------------------------------------------------- 1 | "CLASS: Event 2 | "============================================================ 3 | let s:Event = {} 4 | let g:NERDTreeEvent = s:Event 5 | 6 | function! s:Event.New(nerdtree, subject, action, params) abort 7 | let newObj = copy(self) 8 | let newObj.nerdtree = a:nerdtree 9 | let newObj.subject = a:subject 10 | let newObj.action = a:action 11 | let newObj.params = a:params 12 | return newObj 13 | endfunction 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/nerdtree/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/nvim/plugged/nerdtree/screenshot.png -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/palenight.vim/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/nvim/plugged/palenight.vim/images/screenshot.png -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-color-forest-night/.gitignore: -------------------------------------------------------------------------------- 1 | colors/forest_night.vim 2 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-colors-xcode/templates/_doc_header.colortemplate: -------------------------------------------------------------------------------- 1 | documentation 2 | =========================================================================== 3 | @fullname options *@shortname-options* 4 | enddocumentation 5 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-colors-xcode/templates/_emph_funcs.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_emph_funcs') 2 | #let g:@shortname_emph_funcs = 0 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_emph_funcs* 9 | 10 | Set to 1 to emphasise functions over types and identifiers. The default is 0. 11 | > 12 | let g:@shortname_emph_funcs = 0 13 | < 14 | enddocumentation 15 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-colors-xcode/templates/_emph_idents.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_emph_idents') 2 | #let g:@shortname_emph_idents = 0 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_emph_idents* 9 | 10 | Set to 1 to emphasise identifiers over types and functions. The default is 0. 11 | > 12 | let g:@shortname_emph_idents = 0 13 | < 14 | enddocumentation 15 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-colors-xcode/templates/_emph_types.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_emph_types') 2 | #let g:@shortname_emph_types = 1 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_emph_types* 9 | 10 | Set to 1 to emphasise types over functions and identifiers. The default is 1. 11 | > 12 | let g:@shortname_emph_types = 1 13 | < 14 | enddocumentation 15 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-colors-xcode/templates/_green_comments.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_green_comments') 2 | #let g:@shortname_green_comments = 0 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_green_comments* 9 | 10 | Set to 1 if you want to make comments green in the same way that Xcode’s 11 | ‘Classic’ (rather than ‘Default’) series of themes do. The default is 0. 12 | > 13 | let g:@shortname_green_comments = 0 14 | < 15 | enddocumentation 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-colors-xcode/templates/_markdown.colortemplate: -------------------------------------------------------------------------------- 1 | markdownBoldDelimiter -> markdownDelimiter 2 | markdownBoldItalicDelimiter -> markdownDelimiter 3 | markdownCodeBlock -> markdownCode 4 | markdownCodeDelimiter -> markdownDelimiter 5 | markdownHeadingDelimiter -> markdownDelimiter 6 | markdownItalicDelimiter -> markdownDelimiter 7 | markdownLinkDelimiter -> markdownDelimiter 8 | markdownLinkText -> None 9 | markdownLinkTextDelimiter -> markdownDelimiter 10 | markdownListMarker -> markdownDelimiter 11 | markdownUrl -> Underlined 12 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-colors-xcode/templates/_match_paren_style.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_match_paren_style') 2 | #let g:@shortname_match_paren_style = 0 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_match_paren_style* 9 | 10 | Set to 0 to use the UI’s blue colour for matching surrounds (e.g. parentheses), 11 | or set to 1 to use Xcode’s original yellow colour, which may cause confusion 12 | with the cursor. The default is 0. 13 | > 14 | let g:@shortname_match_paren_style = 0 15 | < 16 | enddocumentation 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-devicons/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-devicons/.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: "3.8" 3 | 4 | install: 5 | - pip install vim-vint 6 | 7 | script: 8 | - vint --verbose --stat $(find . -type f -name '*.vim') 9 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-devicons/autoload/devicons/plugins/denite.vim: -------------------------------------------------------------------------------- 1 | function! devicons#plugins#denite#init() abort 2 | let s:denite_ver = (exists('*denite#get_status_mode') ? 2 : 3) 3 | if s:denite_ver == 3 4 | call denite#custom#source('file,file/rec,file_mru,file/old,buffer,directory/rec,directory_mru', 'converters', ['devicons_denite_converter']) 5 | else 6 | call denite#custom#source('file,file_rec,file_mru,file_old,buffer,directory_rec,directory_mru', 'converters', ['devicons_denite_converter']) 7 | endif 8 | endfunction 9 | 10 | " vim: tabstop=2 softtabstop=2 shiftwidth=2 expandtab: 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-devicons/autoload/devicons/plugins/flagship.vim: -------------------------------------------------------------------------------- 1 | function! devicons#plugins#flagship#init() abort 2 | if g:webdevicons_enable_flagship_statusline 3 | augroup webdevicons_flagship_filetype 4 | autocmd User Flags call Hoist('buffer', 'WebDevIconsGetFileTypeSymbol') 5 | augroup END 6 | endif 7 | 8 | if g:webdevicons_enable_flagship_statusline_fileformat_symbols 9 | augroup webdevicons_flagship_filesymbol 10 | autocmd User Flags call Hoist('buffer', 'WebDevIconsGetFileFormatSymbol') 11 | augroup END 12 | endif 13 | endfunction 14 | 15 | " vim: tabstop=2 softtabstop=2 shiftwidth=2 expandtab: 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-devicons/autoload/devicons/plugins/startify.vim: -------------------------------------------------------------------------------- 1 | 2 | function! devicons#plugins#startify#init() abort 3 | exec ":function! StartifyEntryFormat() abort \n return 'WebDevIconsGetFileTypeSymbol(absolute_path) .\" \". entry_path' \n endfunction" 4 | endfunction 5 | 6 | " vim: tabstop=2 softtabstop=2 shiftwidth=2 expandtab: 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-devicons/autoload/devicons/plugins/vimfiler.vim: -------------------------------------------------------------------------------- 1 | function! devicons#plugins#vimfiler#init() abort 2 | call vimfiler#custom#profile('default', 'context', { 3 | \ 'columns': 'devicons:size:time', 4 | \ 'explorer_columns': 'devicons' 5 | \ }) 6 | endfunction 7 | 8 | " vim: tabstop=2 softtabstop=2 shiftwidth=2 expandtab: 9 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-devicons/pythonx/vim_devicons/__init__.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | pkg_resources.declare_namespace(__name__) 3 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-devicons/pythonx/vim_devicons/powerline/__init__.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | pkg_resources.declare_namespace(__name__) 3 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-latex-live-preview/.editorconfig: -------------------------------------------------------------------------------- 1 | ; This file is for unifying the coding style for different editors and IDEs. 2 | ; More information at http://EditorConfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | indent_style = space 8 | indent_size = 4 9 | end_of_line = lf 10 | max_line_length = 80 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-latex-live-preview/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Expected behavior 2 | 3 | Tell us what should happen 4 | 5 | ## Actual behavior 6 | 7 | Tell us what happens instead 8 | 9 | ## Steps to reproduce 10 | 11 | Tell us how it occurs 12 | 13 | 1. 14 | 1. 15 | 1. 16 | 17 | ## System configuration 18 | 19 | - **Vim version**: 20 | 21 | ```bash 22 | # output of `vim --version` 23 | ``` 24 | 25 | - **Platform**: 26 | 27 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-latex-live-preview/.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-latex-live-preview/misc/mkzip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | zip vim-latex-live-preview.zip ../plugin/*.vim ../doc/*.txt 4 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-latex-live-preview/misc/screenshot-evince.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/nvim/plugged/vim-latex-live-preview/misc/screenshot-evince.gif -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/.github/ISSUE_TEMPLATE/add-language.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Add language 3 | about: Add support for new language 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | **GitHub repository url** 13 | 14 | 15 | **Is this plugin well maintained?** 16 | 17 | 18 | **Is this plugin lightweight? (no advanced functionality, just indent and syntax support)** 19 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Report vim-polyglot bug 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | **Does this bug happen when you install plugin without vim-polyglot?** 13 | 14 | **Describe the bug:** 15 | 16 | **To Reproduce:** 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/ftplugin/cabal.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haskell') == -1 2 | 3 | setlocal comments=s1fl:{-,mb:-,ex:-},:-- 4 | setlocal iskeyword+=-,.,* 5 | setlocal commentstring=--\ %s 6 | 7 | endif 8 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/ftplugin/coffee.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'cjsx') == -1 2 | 3 | if exists("loaded_matchit") 4 | let b:match_ignorecase = 0 5 | let b:match_words = '(:),\[:\],{:},<:>,' . 6 | \ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>' 7 | endif 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/ftplugin/haskell.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haskell') == -1 2 | 3 | setlocal comments=s1fl:{-,mb:\ \ ,ex:-},:-- 4 | setlocal iskeyword+=' 5 | 6 | endif 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/ftplugin/idris.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'idris') == -1 2 | 3 | setlocal iskeyword+=' 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/ftplugin/javascriptreact.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || !(index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'jsx') != -1) 2 | 3 | source :h/javascript.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/ftplugin/puppet.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'puppet') == -1 2 | 3 | if !exists('g:puppet_align_hashes') 4 | let g:puppet_align_hashes = 1 5 | endif 6 | 7 | if g:puppet_align_hashes 8 | inoremap => =>:call puppet#align#AlignHashrockets()$a 9 | endif 10 | 11 | endif 12 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/ftplugin/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || !(index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'jsx') != -1) 2 | 3 | source :h/tsx.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/ftplugin/yaml.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'yaml') == -1 2 | 3 | " Vim indent file 4 | " Language: Yaml 5 | " Author: Henrique Barcelos 6 | " Date: 2014-10-08 7 | " URL: https://github.com/hjpbarcelos 8 | setlocal autoindent sw=2 ts=2 expandtab 9 | " vim:set sw=2: 10 | 11 | endif 12 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/indent/javascriptreact.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || !(index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'jsx') != -1) 2 | 3 | source :h/javascript.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/indent/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || !(index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'jsx') != -1) 2 | 3 | source :h/tsx.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/syntax/haskell.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dhall') == -1 2 | 3 | " store and remove current syntax value 4 | let old_syntax = b:current_syntax 5 | unlet b:current_syntax 6 | 7 | syn include @dhall syntax/dhall.vim 8 | unlet b:current_syntax 9 | 10 | syn region dhallBlock matchgroup=quasiQuote start=/\[\$\?staticDhallExpression|/ end=/|\]/ contains=@dhall 11 | 12 | hi def link quasiQuote Underlined 13 | 14 | " restore current syntax value 15 | let b:current_syntax = old_syntax 16 | 17 | endif 18 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/syntax/help.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'scala') == -1 2 | 3 | " Extends standard help syntax with highlighting of Scala code. 4 | " 5 | " Place code between !sc! and !/sc! delimiters. These will be hidden if Vim is 6 | " built with conceal support. 7 | 8 | unlet! b:current_syntax 9 | 10 | syntax include @ScalaCode syntax/scala.vim 11 | 12 | if has('conceal') 13 | syntax region rgnScala matchgroup=Ignore concealends start='!sc!' end='!/sc!' contains=@ScalaCode 14 | else 15 | syntax region rgnScala matchgroup=Ignore start='!sc!' end='!/sc!' contains=@ScalaCode 16 | endif 17 | 18 | endif 19 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/syntax/html.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1 2 | 3 | " Vim syntax file 4 | " Language: HTML (version 5.1) 5 | " Last Change: 2017 Feb 15 6 | " License: Public domain 7 | " (but let me know if you like :) ) 8 | " 9 | " Maintainer: Kao, Wei-Ko(othree) ( othree AT gmail DOT com ) 10 | 11 | " Comment 12 | " https://github.com/w3c/html/issues/694 13 | syntax region htmlComment start=++ contains=@Spell 14 | syntax region htmlComment start=++ 15 | 16 | endif 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/syntax/javascriptreact.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || !(index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'jsx') != -1) 2 | 3 | source :h/javascript.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/syntax/javascriptreact/graphql.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'graphql') == -1 2 | 3 | runtime! after/syntax/javascript/graphql.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/syntax/reason.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'reason') == -1 2 | 3 | 4 | endif 5 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/syntax/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || !(index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'jsx') != -1) 2 | 3 | source :h/tsx.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/syntax/typescriptreact/graphql.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'graphql') == -1 2 | 3 | runtime! after/syntax/typescript/graphql.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/after/syntax/vue/graphql.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'graphql') == -1 2 | 3 | runtime! after/syntax/javascript/graphql.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/autoload/python/utils.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'python-compiler') == -1 2 | 3 | " Sometimes Python issues debugging messages 4 | " which don't belong to a call stack context 5 | " this function filters these messages 6 | function! python#utils#fix_qflist() " {{{ 7 | let l:traceback = [] 8 | let l:qflist = getqflist() 9 | 10 | for l:item in l:qflist 11 | if !empty(l:item.type) 12 | call add(l:traceback, l:item) 13 | endif 14 | endfor 15 | 16 | if !empty(l:traceback) 17 | call setqflist(l:traceback) 18 | endif 19 | endfunction " }}} 20 | 21 | endif 22 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/autoload/vifm/edit.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vifm') == -1 2 | 3 | " common functions for vifm command-line editing buffer filetype plugins 4 | " Maintainer: xaizek 5 | " Last Change: August 18, 2013 6 | 7 | " Prepare buffer 8 | function! vifm#edit#Init() 9 | " Mappings for quick leaving the buffer (behavior similar to Command line 10 | " buffer in Vim) 11 | nnoremap :copy 0 \| wq 12 | imap 13 | 14 | " Start buffer editing in insert mode 15 | startinsert 16 | endfunction 17 | 18 | endif 19 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/autoload/vital/_crystal.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'crystal') == -1 2 | 3 | let s:_plugin_name = expand(':t:r') 4 | 5 | function! vital#{s:_plugin_name}#new() abort 6 | return vital#{s:_plugin_name[1:]}#new() 7 | endfunction 8 | 9 | function! vital#{s:_plugin_name}#function(funcname) abort 10 | silent! return function(a:funcname) 11 | endfunction 12 | 13 | endif 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/autoload/vital/crystal.vital: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'crystal') == -1 2 | 3 | crystal 4 | bee84ae23effb0510137ad177e98c94d8b3657a6 5 | 6 | Process 7 | Web.JSON 8 | ColorEcho 9 | 10 | endif 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/compiler/cake.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'coffee-script') == -1 2 | 3 | " Language: CoffeeScript 4 | " Maintainer: Mick Koch 5 | " URL: http://github.com/kchmck/vim-coffee-script 6 | " License: WTFPL 7 | 8 | if exists('current_compiler') 9 | finish 10 | endif 11 | 12 | let current_compiler = 'cake' 13 | call coffee#CoffeeSetUpVariables() 14 | 15 | exec 'CompilerSet makeprg=' . escape(g:coffee_cake . ' ' . 16 | \ g:coffee_cake_options . ' $*', ' ') 17 | call coffee#CoffeeSetUpErrorFormat() 18 | 19 | endif 20 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/compiler/credo.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elixir') == -1 2 | 3 | if exists('current_compiler') 4 | finish 5 | endif 6 | let current_compiler = 'credo' 7 | 8 | if exists(":CompilerSet") != 2 9 | command -nargs=* CompilerSet setlocal 10 | endif 11 | 12 | CompilerSet errorformat=%f:%l:%c:\ %t:\ %m,%f:%l:\ %t:\ %m 13 | CompilerSet makeprg=mix\ credo\ suggest\ --format=flycheck 14 | 15 | endif 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/compiler/eslint.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'javascript') == -1 2 | 3 | " Vim compiler plugin 4 | " Language: JavaScript 5 | " Maintainer: vim-javascript community 6 | " URL: https://github.com/pangloss/vim-javascript 7 | 8 | if exists("current_compiler") 9 | finish 10 | endif 11 | let current_compiler = "eslint" 12 | 13 | if exists(":CompilerSet") != 2 14 | command! -nargs=* CompilerSet setlocal 15 | endif 16 | 17 | CompilerSet makeprg=eslint\ -f\ compact\ % 18 | CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m 19 | 20 | endif 21 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/compiler/fish.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'fish') == -1 2 | 3 | if exists('current_compiler') 4 | finish 5 | endif 6 | let current_compiler = 'fish' 7 | 8 | CompilerSet makeprg=fish\ --no-execute\ % 9 | execute 'CompilerSet errorformat='.escape(fish#errorformat(), ' ') 10 | 11 | endif 12 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/compiler/mix.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elixir') == -1 2 | 3 | if exists('current_compiler') 4 | finish 5 | endif 6 | let current_compiler = 'mix' 7 | 8 | if exists(":CompilerSet") != 2 9 | command -nargs=* CompilerSet setlocal 10 | endif 11 | 12 | CompilerSet makeprg=mix\ compile 13 | CompilerSet errorformat= 14 | \%Wwarning:\ %m, 15 | \%C%f:%l,%Z, 16 | \%E==\ Compilation\ error\ in\ file\ %f\ ==, 17 | \%C**\ (%\\w%\\+)\ %f:%l:\ %m,%Z 18 | 19 | 20 | endif 21 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/compiler/nix-build.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nix') == -1 2 | 3 | if exists('current_compiler') 4 | finish 5 | endif 6 | let current_compiler = 'nix-build' 7 | 8 | if exists(":CompilerSet") != 2 9 | command -nargs=* CompilerSet setlocal 10 | endif 11 | 12 | CompilerSet errorformat=error:\ %m\ at\ %f:%l:%c,builder\ for\ \'%m\'\ failed\ with\ exit\ code\ %n,fixed-output\ derivation\ produced\ path\ \'%s\'\ with\ %m 13 | CompilerSet makeprg=nix-build 14 | 15 | endif 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/extras/ngdoc.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'javascript') == -1 2 | 3 | syntax match jsDocTags contained /@\(link\|method[oO]f\|ngdoc\|ng[iI]nject\|restrict\)/ nextgroup=jsDocParam skipwhite 4 | syntax match jsDocType contained "\%(#\|\$\|\w\|\"\|-\|\.\|:\|\/\)\+" nextgroup=jsDocParam skipwhite 5 | syntax match jsDocParam contained "\%(#\|\$\|\w\|\"\|-\|\.\|:\|{\|}\|\/\|\[\|]\|=\)\+" 6 | 7 | endif 8 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/ansible.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ansible') == -1 2 | 3 | set isfname+=@-@ 4 | set path+=./../templates,./../files,templates,files 5 | 6 | endif 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/ansible_hosts.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ansible') == -1 2 | 3 | if exists("b:did_ftplugin") 4 | finish 5 | else 6 | let b:did_ftplugin = 1 7 | endif 8 | 9 | setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions-=c 10 | 11 | let b:undo_ftplugin = "setl comments< commentstring< formatoptions<" 12 | 13 | endif 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/docker-compose.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dockerfile') == -1 2 | 3 | " Define comment string 4 | setlocal commentstring=#\ %s 5 | 6 | " Enable automatic comment insertion 7 | setlocal formatoptions+=cro 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/dune.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1 2 | 3 | if exists("b:did_ftplugin") 4 | finish 5 | endif 6 | let b:did_ftplugin=1 7 | 8 | set lisp 9 | 10 | " Comment string 11 | setl commentstring=;\ %s 12 | setl comments=:; 13 | 14 | endif 15 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/emblem.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'emblem') == -1 2 | 3 | " Language: emblem 4 | " Maintainer: Yulij Andreevich Lesov 5 | " URL: http://github.com/yalesov/vim-emblem 6 | " Version: 2.0.1 7 | " Last Change: 2016 Jul 6 8 | " License: ISC 9 | 10 | setlocal tabstop=2 11 | setlocal softtabstop=2 12 | setlocal shiftwidth=2 13 | setlocal smarttab 14 | setlocal expandtab 15 | setlocal smartindent 16 | 17 | setlocal formatoptions=q 18 | setlocal comments=:/ 19 | setlocal commentstring=/\ %s 20 | 21 | endif 22 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/gitconfig.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1 2 | 3 | " Vim filetype plugin 4 | " Language: git config file 5 | " Maintainer: Tim Pope 6 | " Last Change: 2009 Dec 24 7 | 8 | " Only do this when not done yet for this buffer 9 | if (exists("b:did_ftplugin")) 10 | finish 11 | endif 12 | let b:did_ftplugin = 1 13 | 14 | setlocal formatoptions-=t formatoptions+=croql 15 | setlocal comments=:#,:; commentstring=;\ %s 16 | 17 | let b:undo_ftplugin = "setl fo< com< cms<" 18 | 19 | endif 20 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/gitsendemail.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'git') == -1 2 | 3 | " Vim filetype plugin 4 | " Language: git send-email message 5 | " Maintainer: Tim Pope 6 | " Last Change: 2009 Dec 24 7 | 8 | runtime! ftplugin/mail.vim 9 | 10 | endif 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/hive.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'hive') == -1 2 | 3 | setlocal comments=:-- 4 | setlocal commentstring=--\ %s 5 | 6 | endif 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/html.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1 2 | 3 | " Maintainer: othree 4 | " URL: http://github.com/othree/html5.vim 5 | " Last Change: 2014-05-02 6 | " License: MIT 7 | " Changes: Add - to keyword 8 | 9 | " setlocal iskeyword+=- 10 | 11 | setlocal commentstring= 12 | 13 | endif 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/i3config.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'i3') == -1 2 | 3 | setlocal commentstring=#\ %s 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/ion.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ion') == -1 2 | 3 | 4 | if exists("b:did_ftplugin") | finish | endif 5 | let b:did_ftplugin = 1 6 | 7 | setlocal commentstring=#%s 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/kotlin.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'kotlin') == -1 2 | 3 | if exists('b:did_ftplugin') | finish | endif 4 | let b:did_ftplugin = 1 5 | 6 | setlocal comments=:// 7 | setlocal commentstring=//\ %s 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/litcoffee.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'coffee-script') == -1 2 | 3 | runtime ftplugin/coffee.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/llvm.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'llvm') == -1 2 | 3 | " Vim filetype plugin file 4 | " Language: LLVM Assembly 5 | " Maintainer: The LLVM team, http://llvm.org/ 6 | 7 | if exists("b:did_ftplugin") 8 | finish 9 | endif 10 | let b:did_ftplugin = 1 11 | 12 | setlocal softtabstop=2 shiftwidth=2 13 | setlocal expandtab 14 | setlocal comments+=:; 15 | 16 | endif 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/meson.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'meson') == -1 2 | 3 | " Vim filetype plugin file 4 | " Language: meson 5 | " License: VIM License 6 | " Original Author: Laurent Pinchart 7 | " Last Change: 2018 Nov 27 8 | 9 | if exists("b:did_ftplugin") | finish | endif 10 | let b:did_ftplugin = 1 11 | let s:keepcpo= &cpo 12 | set cpo&vim 13 | 14 | setlocal commentstring=#\ %s 15 | setlocal comments=:# 16 | 17 | setlocal shiftwidth=2 18 | setlocal softtabstop=2 19 | 20 | let &cpo = s:keepcpo 21 | unlet s:keepcpo 22 | 23 | endif 24 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/moon.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'moonscript') == -1 2 | 3 | " Language: MoonScript 4 | " Maintainer: leafo 5 | " Based On: CoffeeScript by Mick Koch 6 | " URL: http://github.com/leafo/moonscript-vim 7 | " License: WTFPL 8 | 9 | if exists("b:did_ftplugin") 10 | finish 11 | endif 12 | let b:did_ftplugin = 1 13 | 14 | setlocal formatoptions-=t 15 | setlocal comments=:-- 16 | setlocal commentstring=--\ %s 17 | 18 | let b:undo_ftplugin = "setlocal commentstring< comments< formatoptions<" 19 | 20 | endif 21 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/nginx.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1 2 | 3 | setlocal commentstring=#\ %s 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/nix.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nix') == -1 2 | 3 | " Vim filetype plugin 4 | " Language: Nix 5 | " Maintainer: Daiderd Jordan 6 | " URL: https://github.com/LnL7/vim-nix 7 | 8 | if (exists("b:did_ftplugin")) 9 | finish 10 | endif 11 | let b:did_ftplugin = 1 12 | 13 | setlocal 14 | \ comments=:# 15 | \ commentstring=#\ %s 16 | \ iskeyword+=- 17 | 18 | if get(g:, 'nix_recommended_style', 1) 19 | setlocal 20 | \ shiftwidth=2 21 | \ softtabstop=2 22 | \ expandtab 23 | endif 24 | 25 | endif 26 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/oasis.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1 2 | 3 | 4 | setlocal comments=:# 5 | setlocal commentstring=#\ %s 6 | 7 | endif 8 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/objc.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'objc') == -1 2 | 3 | " Use C++ style comment strings with commentary.vim 4 | setl commentstring=//%s 5 | 6 | " Search for include files inside frameworks (used for gf etc.) 7 | setl includeexpr=substitute(v:fname,'\\([^/]\\+\\)/\\(.\\+\\)','/System/Library/Frameworks/\\1.framework/Headers/\\2','') 8 | 9 | 10 | endif 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/ocaml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/ocaml.vim -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/ocamlbuild_tags.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1 2 | 3 | 4 | setlocal comments=:# 5 | setlocal commentstring=#\ %s 6 | 7 | endif 8 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/opencl.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'opencl') == -1 2 | 3 | if exists("b:did_ftplugin") | finish | endif 4 | 5 | if version > 600 6 | runtime! ftplugin/c.vim 7 | endif 8 | 9 | " Smaller tab stops. 10 | setlocal tabstop=4 11 | setlocal shiftwidth=4 12 | 13 | " Smart tabbing/indenting 14 | setlocal smarttab 15 | setlocal smartindent 16 | 17 | let b:did_ftplugin = 1 18 | 19 | endif 20 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/raml.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'raml') == -1 2 | 3 | set ts=2 sts=2 sw=2 et 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/scss.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'scss') == -1 2 | 3 | if exists('b:did_indent') && b:did_indent 4 | " be kind. allow users to override this. Does it work? 5 | finish 6 | endif 7 | 8 | setlocal indentexpr=scss_indent#GetIndent(v:lnum) 9 | 10 | " Automatically insert the current comment leader after hitting 11 | " in Insert mode respectively after hitting 'o' or 'O' in Normal mode 12 | setlocal formatoptions+=ro 13 | 14 | " SCSS comments are either /* */ or // 15 | setlocal comments=s1:/*,mb:*,ex:*/,:// 16 | 17 | endif 18 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/sexplib.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1 2 | 3 | " Language: Sexplib 4 | " Maintainer: Markus Mottl 5 | " URL: http://www.ocaml.info/vim/ftplugin/sexplib.vim 6 | " Last Change: 7 | " 2017 Apr 12 - First version (MM) 8 | 9 | if exists("b:did_ftplugin") 10 | finish 11 | endif 12 | let b:did_ftplugin=1 13 | 14 | " Comment string 15 | setl commentstring=;\ %s 16 | setl comments=:; 17 | 18 | endif 19 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/solidity.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'solidity') == -1 2 | 3 | setlocal commentstring=//\ %s 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/swift.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'swift') == -1 2 | 3 | setlocal commentstring=//\ %s 4 | " @-@ adds the literal @ to iskeyword for @IBAction and similar 5 | setlocal iskeyword+=@-@,# 6 | setlocal completefunc=syntaxcomplete#Complete 7 | 8 | endif 9 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/tablegen.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'llvm') == -1 2 | 3 | " Vim filetype plugin file 4 | " Language: LLVM TableGen 5 | " Maintainer: The LLVM team, http://llvm.org/ 6 | 7 | if exists("b:did_ftplugin") 8 | finish 9 | endif 10 | let b:did_ftplugin = 1 11 | 12 | setlocal matchpairs+=<:> 13 | setlocal softtabstop=2 shiftwidth=2 14 | setlocal expandtab 15 | 16 | endif 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/tmux.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'tmux') == -1 2 | 3 | " Vim filetype plugin file 4 | " Language: tmux(1) configuration file 5 | " URL: https://github.com/ericpruitt/tmux.vim/ 6 | " Maintainer: Eric Pruitt 7 | " Last Changed: 2017 Mar 10 8 | 9 | if exists("b:did_ftplugin") 10 | finish 11 | endif 12 | let b:did_ftplugin = 1 13 | 14 | setlocal commentstring=#\ %s 15 | 16 | endif 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/toml.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'toml') == -1 2 | 3 | " File: ftplugin/toml.vim 4 | " Author: Kevin Ballard 5 | " Description: FileType Plugin for Toml 6 | " Last Change: Feb 12, 2019 7 | 8 | if exists('b:did_ftplugin') 9 | finish 10 | endif 11 | let b:did_ftplugin = 1 12 | 13 | let s:save_cpo = &cpo 14 | set cpo&vim 15 | let b:undo_ftplugin = 'setlocal commentstring< comments<' 16 | 17 | setlocal commentstring=#\ %s 18 | setlocal comments=:# 19 | 20 | let &cpo = s:save_cpo 21 | unlet s:save_cpo 22 | 23 | " vim: set et sw=4 ts=4: 24 | 25 | endif 26 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/tt2html.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'perl') == -1 2 | 3 | " Language: TT2 embedded with HTML 4 | " Maintainer: vim-perl 5 | " Homepage: http://github.com/vim-perl/vim-perl 6 | " Bugs/requests: http://github.com/vim-perl/vim-perl/issues 7 | " Last Change: {{LAST_CHANGE}} 8 | 9 | " Only do this when not done yet for this buffer 10 | if exists("b:did_ftplugin") 11 | finish 12 | endif 13 | 14 | " Just use the HTML plugin for now. 15 | runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim 16 | 17 | endif 18 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/typescriptreact.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 2 | 3 | " modified from mxw/vim-jsx from html.vim 4 | if exists("loaded_matchit") && !exists('b:tsx_match_words') 5 | let b:match_ignorecase = 0 6 | let b:tsx_match_words = '(:),\[:\],{:},<:>,' . 7 | \ '<\@<=\([^/][^ \t>]*\)[^>]*\%(/\@\|$\):<\@<=/\1>' 8 | let b:match_words = exists('b:match_words') 9 | \ ? b:match_words . ',' . b:tsx_match_words 10 | \ : b:tsx_match_words 11 | endif 12 | 13 | set suffixesadd+=.tsx 14 | 15 | endif 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/vifm-cmdedit.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vifm') == -1 2 | 3 | " vifm command-line editing buffer filetype plugin 4 | " Maintainer: xaizek 5 | " Last Change: August 18, 2013 6 | 7 | if exists("b:did_ftplugin") 8 | finish 9 | endif 10 | 11 | let b:did_ftplugin = 1 12 | 13 | " Behave as vifm script file 14 | runtime! ftplugin/vifm.vim 15 | 16 | " Use vifm script highlighting 17 | set syntax=vifm 18 | 19 | call vifm#edit#Init() 20 | 21 | " vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : 22 | 23 | endif 24 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/vifm-edit.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vifm') == -1 2 | 3 | " vifm command-line editing buffer filetype plugin 4 | " Maintainer: xaizek 5 | " Last Change: August 18, 2013 6 | 7 | if exists("b:did_ftplugin") 8 | finish 9 | endif 10 | 11 | let b:did_ftplugin = 1 12 | 13 | call vifm#edit#Init() 14 | 15 | " vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : 16 | 17 | endif 18 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/vlang.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'v') == -1 2 | 3 | setlocal commentstring=//\ %s 4 | setlocal makeprg=v\ % 5 | 6 | endif 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/xs.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'perl') == -1 2 | 3 | " Vim filetype plugin file 4 | " Language: XS (Perl extension interface language) 5 | " Maintainer: vim-perl 6 | " Homepage: http://github.com/vim-perl/vim-perl 7 | " Bugs/requests: http://github.com/vim-perl/vim-perl/issues 8 | " Last Change: {{LAST_CHANGE}} 9 | 10 | " Only do this when not done yet for this buffer 11 | if exists("b:did_ftplugin") 12 | finish 13 | endif 14 | 15 | " Just use the C plugin for now. 16 | runtime! ftplugin/c.vim ftplugin/c_*.vim ftplugin/c/*.vim 17 | 18 | endif 19 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/ftplugin/zig.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'zig') == -1 2 | 3 | " Only do this when not done yet for this buffer 4 | if (exists("b:did_ftplugin")) 5 | finish 6 | endif 7 | 8 | let b:did_ftplugin = 1 9 | 10 | setlocal expandtab 11 | setlocal tabstop=4 12 | setlocal shiftwidth=4 13 | 14 | setlocal suffixesadd=.zig 15 | setlocal commentstring=//\ %s 16 | setlocal makeprg=zig\ build 17 | 18 | endif 19 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/Jenkinsfile.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jenkins') == -1 2 | 3 | runtime indent/groovy.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/arduino.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'arduino') == -1 2 | 3 | " Vim indent file 4 | " Language: Arduino 5 | " Maintainer: Kevin Sjöberg 6 | " Last Change: 2014 Feb 28 7 | 8 | " Only load this indent file when no other was loaded. 9 | if exists("b:did_indent") 10 | finish 11 | endif 12 | let b:did_indent = 1 13 | 14 | " C++ indenting is built-in, thus this is very simple 15 | setlocal cindent 16 | 17 | let b:undo_indent = "setl cin<" 18 | 19 | endif 20 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/dune.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1 2 | 3 | " Vim indent file 4 | " Language: dune 5 | 6 | if exists("b:did_indent") 7 | finish 8 | endif 9 | let b:did_indent = 1 10 | 11 | " dune format-dune-file uses 1 space to indent 12 | set softtabstop=1 shiftwidth=1 expandtab 13 | 14 | endif 15 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/elixir.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elixir') == -1 2 | 3 | if exists("b:did_indent") 4 | finish 5 | end 6 | let b:did_indent = 1 7 | 8 | setlocal indentexpr=elixir#indent(v:lnum) 9 | 10 | setlocal indentkeys+==after,=catch,=do,=else,=end,=rescue, 11 | setlocal indentkeys+=*,=->,=\|>,=<>,0},0],0) 12 | 13 | " TODO: @jbodah 2017-02-27: all operators should cause reindent when typed 14 | 15 | function! elixir#indent(lnum) 16 | return elixir#indent#indent(a:lnum) 17 | endfunction 18 | 19 | endif 20 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/ember-script.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'emberscript') == -1 2 | 3 | " Language: ember-script 4 | " Maintainer: Yulij Andreevich Lesov > 5 | " URL: http://github.com/yalesov/vim-ember-script 6 | " Version: 1.0.4 7 | " Last Change: 2016 Jul 6 8 | " License: ISC 9 | 10 | if exists('b:did_indent') 11 | finish 12 | endif 13 | 14 | runtime! indent/coffee.vim 15 | unlet! b:did_indent 16 | let b:did_indent = 1 17 | 18 | endif 19 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/emblem.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'emblem') == -1 2 | 3 | " Language: emblem 4 | " Maintainer: Yulij Andreevich Lesov 5 | " URL: http://github.com/yalesov/vim-emblem 6 | " Version: 2.0.1 7 | " Last Change: 2016 Jul 6 8 | " License: ISC 9 | 10 | endif 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/fish.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'fish') == -1 2 | 3 | setlocal indentexpr=fish#Indent() 4 | setlocal indentkeys+==end,=else,=case 5 | 6 | endif 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/glsl.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'glsl') == -1 2 | 3 | " Language: OpenGL Shading Language 4 | " Maintainer: Sergey Tikhomirov 5 | 6 | if exists("b:did_indent") 7 | finish 8 | endif 9 | 10 | setlocal autoindent cindent 11 | setlocal formatoptions+=roq 12 | 13 | " vim:set sts=2 sw=2 : 14 | 15 | endif 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/hcl.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'hcl') == -1 2 | 3 | if exists('b:did_indent') 4 | finish 5 | endif 6 | 7 | let b:did_indent = 1 8 | 9 | " cindent seems to work adequately with HCL's brace-y syntax 10 | setlocal cindent 11 | 12 | " don't de-indent comments (cindent treats them like preprocessor directives) 13 | setlocal cinkeys-=0# 14 | 15 | endif 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/less.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'less') == -1 2 | 3 | " Vim indent file 4 | " Language: LessCSS 5 | " Maintainer: Leonard Ehrenfried 6 | " Last Change: 2011 Sep 26 7 | 8 | if exists("b:did_indent") 9 | finish 10 | endif 11 | 12 | runtime! indent/css.vim 13 | endif 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/litcoffee.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'coffee-script') == -1 2 | 3 | if exists('b:did_indent') 4 | finish 5 | endif 6 | 7 | runtime! indent/coffee.vim 8 | 9 | let b:did_indent = 1 10 | 11 | setlocal indentexpr=GetLitCoffeeIndent() 12 | 13 | if exists('*GetLitCoffeeIndent') 14 | finish 15 | endif 16 | 17 | function GetLitCoffeeIndent() 18 | if searchpair('^ \|\t', '', '$', 'bWnm') > 0 19 | return GetCoffeeIndent(v:lnum) 20 | else 21 | return -1 22 | endif 23 | endfunc 24 | 25 | 26 | endif 27 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/nginx.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1 2 | 3 | if exists("b:did_indent") 4 | finish 5 | endif 6 | let b:did_indent = 1 7 | 8 | setlocal indentexpr= 9 | 10 | " cindent actually works for nginx' simple file structure 11 | setlocal cindent 12 | " Just make sure that the comments are not reset as defs would be. 13 | setlocal cinkeys-=0# 14 | 15 | endif 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/opencl.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'opencl') == -1 2 | 3 | " Only load this indent file when no other was loaded. 4 | if exists("b:did_indent") 5 | finish 6 | endif 7 | 8 | if version > 600 9 | runtime! indent/c.vim 10 | endif 11 | 12 | let b:did_indent = 1 13 | 14 | endif 15 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/proto.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'protobuf') == -1 2 | 3 | " Vim indent file 4 | " Language: Protobuf 5 | " Maintainer: Johannes Zellner 6 | " Last Change: Fri, 15 Mar 2002 07:53:54 CET 7 | 8 | " Only load this indent file when no other was loaded. 9 | if exists("b:did_indent") 10 | finish 11 | endif 12 | let b:did_indent = 1 13 | 14 | " Protobuf is like indenting C 15 | setlocal cindent 16 | setlocal expandtab 17 | setlocal shiftwidth=2 18 | 19 | let b:undo_indent = "setl cin<" 20 | 21 | endif 22 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/racket.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'racket') == -1 2 | 3 | " Language: Racket 4 | " Maintainer: Will Langstroth 5 | " URL: http://github.com/wlangstroth/vim-racket 6 | 7 | if exists("b:did_indent") 8 | finish 9 | endif 10 | let b:did_indent = 1 11 | 12 | setlocal ai nosi 13 | 14 | let b:undo_indent = "setl ai< si<" 15 | 16 | endif 17 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/razor.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'razor') == -1 2 | 3 | " Vim indent file 4 | " Language: Razor 5 | " Maintainer: Adam Clark 6 | " Last Change: 2013 Jan 24 7 | 8 | if exists("b:did_indent") 9 | finish 10 | endif 11 | runtime! indent/html.vim 12 | runtime! indent/javscript.vim 13 | 14 | endif 15 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/indent/velocity.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vm') == -1 2 | 3 | if exists("b:did_indent") 4 | finish 5 | endif 6 | 7 | runtime! indent/html.vim 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/plugin_guard.vim.template: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, '%%PACK%%') == -1 2 | 3 | %%CONTENT%% 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/plugin_guard_jsx.vim.template: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || !(index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'typescript') != -1 || index(g:polyglot_disabled, 'jsx') != -1) 2 | 3 | %%CONTENT%% 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/basic/decorator.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 2 | 3 | syntax match typescriptDecorator /@\([_$a-zA-Z][_$a-zA-Z0-9]*\.\)*[_$a-zA-Z][_$a-zA-Z0-9]*\>/ 4 | \ nextgroup=typescriptFuncCallArg,typescriptTypeArguments 5 | \ contains=@_semantic,typescriptDotNotation 6 | 7 | endif 8 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/basic/patch.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 2 | 3 | " patch for generated code 4 | syntax keyword typescriptGlobal Promise 5 | \ nextgroup=typescriptGlobalPromiseDot,typescriptFuncCallArg,typescriptTypeArguments oneline 6 | syntax keyword typescriptGlobal Map WeakMap 7 | \ nextgroup=typescriptGlobalPromiseDot,typescriptFuncCallArg,typescriptTypeArguments oneline 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/dd.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dlang') == -1 2 | 3 | runtime! /syntax/ddoc.vim 4 | 5 | endif 6 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/flow.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'javascript') == -1 2 | 3 | runtime syntax/javascript.vim 4 | runtime extras/flow.vim 5 | 6 | endif 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/godebugoutput.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'go') == -1 2 | 3 | if exists("b:current_syntax") 4 | finish 5 | endif 6 | 7 | syn match godebugOutputErr '^ERR:.*' 8 | syn match godebugOutputOut '^OUT:.*' 9 | 10 | let b:current_syntax = "godebugoutput" 11 | 12 | hi def link godebugOutputErr Comment 13 | hi def link godebugOutputOut Normal 14 | 15 | " vim: sw=2 ts=2 et 16 | 17 | endif 18 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/godebugstacktrace.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'go') == -1 2 | 3 | if exists("b:current_syntax") 4 | finish 5 | endif 6 | 7 | syn match godebugStacktrace '^\S\+' 8 | 9 | let b:current_syntax = "godebugoutput" 10 | 11 | hi def link godebugStacktrace SpecialKey 12 | 13 | " vim: sw=2 ts=2 et 14 | 15 | endif 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/gohtmltmpl.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'go') == -1 2 | 3 | if exists("b:current_syntax") 4 | finish 5 | endif 6 | 7 | if !exists("g:main_syntax") 8 | let g:main_syntax = 'html' 9 | endif 10 | 11 | runtime! syntax/gotexttmpl.vim 12 | runtime! syntax/html.vim 13 | unlet b:current_syntax 14 | 15 | syn cluster htmlPreproc add=gotplAction,goTplComment 16 | 17 | let b:current_syntax = "gohtmltmpl" 18 | 19 | " vim: sw=2 ts=2 et 20 | 21 | endif 22 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/html/rdfa.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1 2 | 3 | " Vim syntax file 4 | " Language: RDFa 5 | " Maintainer: othree 6 | " URL: http://github.com/othree/html5-syntax.vim 7 | " Last Change: 2012-06-08 8 | " License: MIT 9 | " Changes: update to Rec 07 June 2012 10 | 11 | " RDFa 12 | " http://www.w3.org/TR/rdfa-syntax/#s_syntax 13 | syn keyword htmlArg contained about content datatype href inlist prefix property rel resource rev src typeof vocab 14 | 15 | endif 16 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/latextoc.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'latex') == -1 2 | 3 | syntax match helpText /^.*: .*/ 4 | syntax match secNum /^\S\+\(\.\S\+\)\?\s*/ contained conceal 5 | syntax match secLine /^\S\+\t.\+/ contains=secNum 6 | syntax match mainSecLine /^[^\.]\+\t.*/ contains=secNum 7 | syntax match ssubSecLine /^[^\.]\+\.[^\.]\+\.[^\.]\+\t.*/ contains=secNum 8 | highlight link helpText PreProc 9 | highlight link secNum Number 10 | highlight link mainSecLine Title 11 | highlight link ssubSecLine Comment 12 | 13 | endif 14 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/merlin.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'reason') == -1 2 | 3 | " Vim syntax file for editing merlin project files 4 | if exists("b:current_syntax") 5 | finish 6 | endif 7 | 8 | syn keyword merlinKeyword S B SUFFIX PKG REC EXT PRJ FLG CMI CMT 9 | syn match merlinComment "\v#.*$" 10 | 11 | hi link merlinKeyword Keyword 12 | hi link merlinComment Comment 13 | 14 | let b:current_syntax = "merlin" 15 | 16 | 17 | endif 18 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/rnoweb.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/rnoweb.vim -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/smhl.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 2 | 3 | syntax cluster _semantic contains=_semantic1,_semantic2,_semantic3,_semantic4,_semantic5,_semantic6,_semantic7,_semantic8,_semantic9,_semantic10,_semantic11,_semantic12,_semantic13,_semantic14,_semantic15,_semantic16,_semantic17,_semantic18,_semantic19,_semantic20,_semantic21,_semantic22,_semantic23,_semantic24,_semantic25 4 | 5 | 6 | endif 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/vimgo.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'go') == -1 2 | 3 | if exists("b:current_syntax") 4 | finish 5 | endif 6 | 7 | let b:current_syntax = "vimgo" 8 | 9 | syn match goInterface /^\S*/ 10 | syn region goTitle start="\%1l" end=":" 11 | 12 | hi def link goInterface Type 13 | hi def link goTitle Label 14 | 15 | " vim: sw=2 ts=2 et 16 | 17 | endif 18 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/yats/ecma-402.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 2 | 3 | syntax keyword typescriptGlobal containedin=typescriptIdentifierName Intl 4 | syntax keyword typescriptIntlMethod contained Collator DateTimeFormat NumberFormat nextgroup=typescriptFuncCallArg 5 | syntax keyword typescriptIntlMethod contained PluralRules nextgroup=typescriptFuncCallArg 6 | syntax cluster props add=typescriptIntlMethod 7 | if exists("did_typescript_hilink") | HiLink typescriptIntlMethod Keyword 8 | endif 9 | 10 | endif 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/yats/es6-function.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 2 | 3 | syntax keyword typescriptGlobal containedin=typescriptIdentifierName Function 4 | syntax keyword typescriptFunctionMethod contained apply bind call nextgroup=typescriptFuncCallArg 5 | syntax cluster props add=typescriptFunctionMethod 6 | if exists("did_typescript_hilink") | HiLink typescriptFunctionMethod Keyword 7 | endif 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/yats/es6-json.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 2 | 3 | syntax keyword typescriptGlobal containedin=typescriptIdentifierName JSON nextgroup=typescriptGlobalJSONDot,typescriptFuncCallArg 4 | syntax match typescriptGlobalJSONDot /\./ contained nextgroup=typescriptJSONStaticMethod,typescriptProp 5 | syntax keyword typescriptJSONStaticMethod contained parse stringify nextgroup=typescriptFuncCallArg 6 | if exists("did_typescript_hilink") | HiLink typescriptJSONStaticMethod Keyword 7 | endif 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/yats/web-geo.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 2 | 3 | syntax keyword typescriptGlobal containedin=typescriptIdentifierName Geolocation 4 | syntax keyword typescriptGeolocationMethod contained getCurrentPosition watchPosition nextgroup=typescriptFuncCallArg 5 | syntax keyword typescriptGeolocationMethod contained clearWatch nextgroup=typescriptFuncCallArg 6 | syntax cluster props add=typescriptGeolocationMethod 7 | if exists("did_typescript_hilink") | HiLink typescriptGeolocationMethod Keyword 8 | endif 9 | 10 | endif 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-polyglot/syntax/yats/web-network.vim: -------------------------------------------------------------------------------- 1 | if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'typescript') == -1 2 | 3 | syntax keyword typescriptGlobal containedin=typescriptIdentifierName NetworkInformation 4 | syntax keyword typescriptBOMNetworkProp contained downlink downlinkMax effectiveType 5 | syntax keyword typescriptBOMNetworkProp contained rtt type 6 | syntax cluster props add=typescriptBOMNetworkProp 7 | if exists("did_typescript_hilink") | HiLink typescriptBOMNetworkProp Keyword 8 | endif 9 | 10 | endif 11 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-sleuth/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: tpope 2 | custom: ["https://www.paypal.me/vimpope"] 3 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-sleuth/.gitignore: -------------------------------------------------------------------------------- 1 | /doc/tags 2 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/nvim/plugged/vim-sleuth/CONTRIBUTING.markdown: -------------------------------------------------------------------------------- 1 | See the [contribution guidelines for pathogen.vim](https://github.com/tpope/vim-pathogen/blob/master/CONTRIBUTING.markdown). 2 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/polybar/launch.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # Terminate already running bar instances 4 | killall -q polybar 5 | 6 | 7 | 8 | # Launch bar1 and bar2 9 | polybar mainbar-bspwm & 10 | #polybar bar2 & 11 | 12 | echo "Bars launched..." 13 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/polybar/scripts/hwinfo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin.env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/polybar/scripts/load.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | my $load = capture { system q{uptime | awk '{print $(NF-2)}'} }; 10 | $load =~ s/\,\s*$//g; 11 | 12 | say " $load"; -------------------------------------------------------------------------------- /Bspwm_pywal/.config/polybar/scripts/memory.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | sub memory() { 8 | my $free = capture{system q{cat /proc/meminfo | grep MemFree | awk '{printf $2}'}}; 9 | my $total = capture{system q{cat /proc/meminfo | grep MemTotal | awk '{printf $2}'}}; 10 | 11 | my $percent = $free / $total * 100; 12 | print(" ".int($percent) . "%\n"); 13 | } 14 | 15 | memory(); -------------------------------------------------------------------------------- /Bspwm_pywal/.config/polybar/scripts/vpn.pl: -------------------------------------------------------------------------------- 1 | #!/usr/share/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | sub check_status { 10 | if ( -d "/proc/sys/net/ipv4/conf/tun0" ) { 11 | return 1; 12 | } elsif ( -d "/proc/sys/net/ipv4/conf/ppp0" ) { 13 | return 1; 14 | } else { 15 | return 0; 16 | } 17 | } 18 | 19 | sub proc_status { 20 | if (check_status == 1) { 21 | say(" On"); 22 | } else { 23 | say(" Off"); 24 | } 25 | } 26 | 27 | proc_status(); -------------------------------------------------------------------------------- /Bspwm_pywal/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /Bspwm_pywal/.config/ranger/plugins/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/ranger/plugins/__init__.pyo -------------------------------------------------------------------------------- /Bspwm_pywal/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_pywal/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_pywal/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_pywal/.config/ranger/plugins/devicons.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/ranger/plugins/devicons.pyo -------------------------------------------------------------------------------- /Bspwm_pywal/.config/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- 1 | import ranger.api 2 | from ranger.core.linemode import LinemodeBase 3 | from .devicons import * 4 | 5 | @ranger.api.register_linemode 6 | class DevIconsLinemode(LinemodeBase): 7 | name = "devicons" 8 | 9 | uses_metadata = False 10 | 11 | def filetitle(self, file, metadata): 12 | return devicon(file) + ' ' + file.relative_path 13 | 14 | @ranger.api.register_linemode 15 | class DevIconsLinemodeFile(LinemodeBase): 16 | name = "filename" 17 | 18 | def filetitle(self, file, metadata): 19 | return devicon(file) + ' ' + file.relative_path 20 | -------------------------------------------------------------------------------- /Bspwm_pywal/.config/ranger/plugins/devicons_linemode.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_pywal/.config/ranger/plugins/devicons_linemode.pyo -------------------------------------------------------------------------------- /Bspwm_pywal/.config/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set show_hidden true 2 | set preview_images true 3 | set preview_images_method ueberzug 4 | set w3m_delay 0.1 5 | map shell dragon-drag-and-drop -a -x %p 6 | # a plugin that adds file glyphs / icon support to Ranger: 7 | # https://github.com/alexanderjeurissen/ranger_devicons 8 | default_linemode devicons 9 | map bw shell wal -i %f -o wal-set && cp %f ~/.config/wall.png && sleep 0.1s && notify-send "Theme changed" -i ~/.config/wall.png -t 3000 10 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/dunst/random-schemes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | 4 | for (( i = 0; i < 10; )); do 5 | 6 | for (( i = 0; i < 10;)); do 7 | wal -i $HOME/Pictures/Wallpapers -o wal-set; 8 | sleep 5; 9 | done 10 | i = 0; 11 | done 12 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/kitty/colors.conf: -------------------------------------------------------------------------------- 1 | background #3A3343 2 | foreground #ECDFE1 3 | cursor #ECDFE1 4 | color0 #565575 5 | color1 #FF8080 6 | color2 #95FFA4 7 | color3 #FFE9AA 8 | color4 #C262D5 9 | color5 #C991E1 10 | color6 #AAFFE4 11 | color7 #CBE3E7 12 | color8 #100E23 13 | color9 #FF5485 14 | color10 #62D196 15 | color11 #FFB378 16 | color12 #CD99D7 17 | color13 #906CFF 18 | color14 #63F2F1 19 | color15 #A6B3CC 20 | 21 | 22 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | input-ipc-server= ~/.config/mpv/mpvsocket 2 | script= /home/tanish2002/bin/mpv-notify1.lua 3 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/mpv/mpvtube_playlists: -------------------------------------------------------------------------------- 1 | Sangeet @https://www.youtube.com/playlist?list=PL88kQYE_UywBzqdk0S9QrTwrGk6sTorBP 2 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/nvim/plugged/vim-colors-xcode/templates/_doc_header.colortemplate: -------------------------------------------------------------------------------- 1 | documentation 2 | =========================================================================== 3 | @fullname options *@shortname-options* 4 | enddocumentation 5 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/nvim/plugged/vim-colors-xcode/templates/_emph_funcs.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_emph_funcs') 2 | #let g:@shortname_emph_funcs = 0 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_emph_funcs* 9 | 10 | Set to 1 to emphasise functions over types and identifiers. The default is 0. 11 | > 12 | let g:@shortname_emph_funcs = 0 13 | < 14 | enddocumentation 15 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/nvim/plugged/vim-colors-xcode/templates/_emph_idents.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_emph_idents') 2 | #let g:@shortname_emph_idents = 0 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_emph_idents* 9 | 10 | Set to 1 to emphasise identifiers over types and functions. The default is 0. 11 | > 12 | let g:@shortname_emph_idents = 0 13 | < 14 | enddocumentation 15 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/nvim/plugged/vim-colors-xcode/templates/_emph_types.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_emph_types') 2 | #let g:@shortname_emph_types = 1 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_emph_types* 9 | 10 | Set to 1 to emphasise types over functions and identifiers. The default is 1. 11 | > 12 | let g:@shortname_emph_types = 1 13 | < 14 | enddocumentation 15 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/nvim/plugged/vim-colors-xcode/templates/_green_comments.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_green_comments') 2 | #let g:@shortname_green_comments = 0 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_green_comments* 9 | 10 | Set to 1 if you want to make comments green in the same way that Xcode’s 11 | ‘Classic’ (rather than ‘Default’) series of themes do. The default is 0. 12 | > 13 | let g:@shortname_green_comments = 0 14 | < 15 | enddocumentation 16 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/nvim/plugged/vim-colors-xcode/templates/_markdown.colortemplate: -------------------------------------------------------------------------------- 1 | markdownBoldDelimiter -> markdownDelimiter 2 | markdownBoldItalicDelimiter -> markdownDelimiter 3 | markdownCodeBlock -> markdownCode 4 | markdownCodeDelimiter -> markdownDelimiter 5 | markdownHeadingDelimiter -> markdownDelimiter 6 | markdownItalicDelimiter -> markdownDelimiter 7 | markdownLinkDelimiter -> markdownDelimiter 8 | markdownLinkText -> None 9 | markdownLinkTextDelimiter -> markdownDelimiter 10 | markdownListMarker -> markdownDelimiter 11 | markdownUrl -> Underlined 12 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/nvim/plugged/vim-colors-xcode/templates/_match_paren_style.colortemplate: -------------------------------------------------------------------------------- 1 | #if !exists('g:@shortname_match_paren_style') 2 | #let g:@shortname_match_paren_style = 0 3 | #endif 4 | 5 | documentation 6 | 7 | --------------------------------------------------------------------------- 8 | *g:@shortname_match_paren_style* 9 | 10 | Set to 0 to use the UI’s blue colour for matching surrounds (e.g. parentheses), 11 | or set to 1 to use Xcode’s original yellow colour, which may cause confusion 12 | with the cursor. The default is 0. 13 | > 14 | let g:@shortname_match_paren_style = 0 15 | < 16 | enddocumentation 17 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/polybar/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Terminate already running bar instances 4 | killall -q polybar 5 | 6 | int=$(iwgetid | getn 1) 7 | echo ${int} 8 | 9 | sed -i "s/interface = .*/interface = \"$int\"/g" ~/.config/polybar/config 10 | 11 | 12 | # Launch bar1 and bar2 13 | polybar white & 14 | #polybar bar2 & 15 | 16 | echo "Bars launched..." 17 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/polybar/scripts/hwinfo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin.env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/polybar/scripts/load.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | my $load = capture { system q{uptime | awk '{print $(NF-2)}'} }; 10 | $load =~ s/\,\s*$//g; 11 | 12 | say " $load"; -------------------------------------------------------------------------------- /Bspwm_tea/.config/polybar/scripts/memory.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | sub memory() { 8 | my $free = capture{system q{cat /proc/meminfo | grep MemFree | awk '{printf $2}'}}; 9 | my $total = capture{system q{cat /proc/meminfo | grep MemTotal | awk '{printf $2}'}}; 10 | 11 | my $percent = $free / $total * 100; 12 | print(" ".int($percent) . "%\n"); 13 | } 14 | 15 | memory(); -------------------------------------------------------------------------------- /Bspwm_tea/.config/polybar/scripts/vpn.pl: -------------------------------------------------------------------------------- 1 | #!/usr/share/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | sub check_status { 10 | if ( -d "/proc/sys/net/ipv4/conf/tun0" ) { 11 | return 1; 12 | } elsif ( -d "/proc/sys/net/ipv4/conf/ppp0" ) { 13 | return 1; 14 | } else { 15 | return 0; 16 | } 17 | } 18 | 19 | sub proc_status { 20 | if (check_status == 1) { 21 | say(" On"); 22 | } else { 23 | say(" Off"); 24 | } 25 | } 26 | 27 | proc_status(); -------------------------------------------------------------------------------- /Bspwm_tea/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_tea/.config/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /Bspwm_tea/.config/ranger/plugins/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_tea/.config/ranger/plugins/__init__.pyo -------------------------------------------------------------------------------- /Bspwm_tea/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_tea/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_tea/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_tea/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_tea/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_tea/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Bspwm_tea/.config/ranger/plugins/devicons.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_tea/.config/ranger/plugins/devicons.pyo -------------------------------------------------------------------------------- /Bspwm_tea/.config/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- 1 | import ranger.api 2 | from ranger.core.linemode import LinemodeBase 3 | from .devicons import * 4 | 5 | @ranger.api.register_linemode 6 | class DevIconsLinemode(LinemodeBase): 7 | name = "devicons" 8 | 9 | uses_metadata = False 10 | 11 | def filetitle(self, file, metadata): 12 | return devicon(file) + ' ' + file.relative_path 13 | 14 | @ranger.api.register_linemode 15 | class DevIconsLinemodeFile(LinemodeBase): 16 | name = "filename" 17 | 18 | def filetitle(self, file, metadata): 19 | return devicon(file) + ' ' + file.relative_path 20 | -------------------------------------------------------------------------------- /Bspwm_tea/.config/ranger/plugins/devicons_linemode.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Bspwm_tea/.config/ranger/plugins/devicons_linemode.pyo -------------------------------------------------------------------------------- /Bspwm_tea/.config/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set show_hidden true 2 | set preview_images true 3 | set preview_images_method ueberzug 4 | set w3m_delay 0.1 5 | map shell dragon-drag-and-drop -a -x %p 6 | # a plugin that adds file glyphs / icon support to Ranger: 7 | # https://github.com/alexanderjeurissen/ranger_devicons 8 | default_linemode devicons 9 | map bw shell wal -i %f -o wal-set && cp %f ~/.config/wall.png && sleep 0.1s && notify-send "Theme changed" -i ~/.config/wall.png -t 3000 10 | -------------------------------------------------------------------------------- /Dwm_girl/.config/bspwm/bspwm-rules: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | id="${1?}" \ 4 | instance="$3" \ 5 | class="$2"; 6 | 7 | case "$class" in 8 | (foo) 9 | bar;; 10 | ("") 11 | unset -v _NET_WM_PID; 12 | . /dev/fd/0 2>/dev/null </dev/null)" in 22 | (spotify) 23 | echo desktop=^3 state=pseudo_tiled follow=on center=on;; 24 | esac;; 25 | esac; 26 | 27 | 28 | -------------------------------------------------------------------------------- /Dwm_girl/.config/dunst/bspwm-dunstrc: -------------------------------------------------------------------------------- 1 | /home/tanish2002/.cache/wal/bspwm-dunstrc -------------------------------------------------------------------------------- /Dwm_girl/.config/dunst/random-schemes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | 4 | for (( i = 0; i < 10; )); do 5 | 6 | for (( i = 0; i < 10;)); do 7 | wal -i $HOME/Pictures/Wallpapers -o wal-set; 8 | sleep 5; 9 | done 10 | i = 0; 11 | done 12 | -------------------------------------------------------------------------------- /Dwm_girl/.config/kitty/colors.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | foreground #f55966 5 | 6 | 7 | background #090909 8 | 9 | 10 | color0 #6a6d7a 11 | color8 #84868f 12 | 13 | 14 | color1 #9a545a 15 | color9 #ffa8b4 16 | 17 | 18 | color2 #2b4c4a 19 | color10 #355957 20 | 21 | 22 | color3 #cbc037 23 | color11 #cbc46b 24 | 25 | 26 | color4 #4c7399 27 | color12 #5986b2 28 | 29 | 30 | color5 #a369bf 31 | color13 #b789cd 32 | 33 | 34 | color6 #50feff 35 | color14 #5aeaeb 36 | 37 | 38 | color7 #d6c2c3 39 | color15 #eaddde 40 | -------------------------------------------------------------------------------- /Dwm_girl/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | input-ipc-server= /tmp/mpvsocket 2 | script= /home/tanish2002/bin/mpv-notify1.lua 3 | -------------------------------------------------------------------------------- /Dwm_girl/.config/mpv/mpvtube_playlists: -------------------------------------------------------------------------------- 1 | Sangeet @https://www.youtube.com/playlist?list=PL88kQYE_UywBzqdk0S9QrTwrGk6sTorBP 2 | -------------------------------------------------------------------------------- /Dwm_girl/.config/polybar/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Terminate already running bar instances 4 | killall -q polybar 5 | 6 | int=$(iwgetid | getn 1) 7 | echo ${int} 8 | sed -i "s/interface = .*/interface = \"$int\"/g" ~/.config/polybar/config 9 | 10 | # Launch bar1 and bar2 11 | polybar white & 12 | #polybar bar2 & 13 | 14 | echo "Bars launched..." 15 | -------------------------------------------------------------------------------- /Dwm_girl/.config/polybar/scripts/hwinfo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin.env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | -------------------------------------------------------------------------------- /Dwm_girl/.config/polybar/scripts/load.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | my $load = capture { system q{uptime | awk '{print $(NF-2)}'} }; 10 | $load =~ s/\,\s*$//g; 11 | 12 | say " $load"; -------------------------------------------------------------------------------- /Dwm_girl/.config/polybar/scripts/memory.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | sub memory() { 8 | my $free = capture{system q{cat /proc/meminfo | grep MemFree | awk '{printf $2}'}}; 9 | my $total = capture{system q{cat /proc/meminfo | grep MemTotal | awk '{printf $2}'}}; 10 | 11 | my $percent = $free / $total * 100; 12 | print(" ".int($percent) . "%\n"); 13 | } 14 | 15 | memory(); -------------------------------------------------------------------------------- /Dwm_girl/.config/polybar/scripts/vpn.pl: -------------------------------------------------------------------------------- 1 | #!/usr/share/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | sub check_status { 10 | if ( -d "/proc/sys/net/ipv4/conf/tun0" ) { 11 | return 1; 12 | } elsif ( -d "/proc/sys/net/ipv4/conf/ppp0" ) { 13 | return 1; 14 | } else { 15 | return 0; 16 | } 17 | } 18 | 19 | sub proc_status { 20 | if (check_status == 1) { 21 | say(" On"); 22 | } else { 23 | say(" Off"); 24 | } 25 | } 26 | 27 | proc_status(); -------------------------------------------------------------------------------- /Dwm_girl/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_girl/.config/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /Dwm_girl/.config/ranger/plugins/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_girl/.config/ranger/plugins/__init__.pyo -------------------------------------------------------------------------------- /Dwm_girl/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_girl/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Dwm_girl/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_girl/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Dwm_girl/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_girl/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Dwm_girl/.config/ranger/plugins/devicons.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_girl/.config/ranger/plugins/devicons.pyo -------------------------------------------------------------------------------- /Dwm_girl/.config/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- 1 | import ranger.api 2 | from ranger.core.linemode import LinemodeBase 3 | from .devicons import * 4 | 5 | @ranger.api.register_linemode 6 | class DevIconsLinemode(LinemodeBase): 7 | name = "devicons" 8 | 9 | uses_metadata = False 10 | 11 | def filetitle(self, file, metadata): 12 | return devicon(file) + ' ' + file.relative_path 13 | 14 | @ranger.api.register_linemode 15 | class DevIconsLinemodeFile(LinemodeBase): 16 | name = "filename" 17 | 18 | def filetitle(self, file, metadata): 19 | return devicon(file) + ' ' + file.relative_path 20 | -------------------------------------------------------------------------------- /Dwm_girl/.config/ranger/plugins/devicons_linemode.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_girl/.config/ranger/plugins/devicons_linemode.pyo -------------------------------------------------------------------------------- /Dwm_girl/.config/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set show_hidden true 2 | set preview_images true 3 | set preview_images_method ueberzug 4 | set w3m_delay 0.1 5 | map shell dragon-drag-and-drop -a -x %p 6 | # a plugin that adds file glyphs / icon support to Ranger: 7 | # https://github.com/alexanderjeurissen/ranger_devicons 8 | default_linemode devicons 9 | map bw shell wal -i %f -o wal-set && cp %f ~/.config/wall.png && sleep 0.1s && notify-send "Theme changed" -i ~/.config/wall.png -t 3000 10 | -------------------------------------------------------------------------------- /Dwm_solid/.config/dunst/random-schemes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | 4 | for (( i = 0; i < 10; )); do 5 | 6 | for (( i = 0; i < 10;)); do 7 | wal -i $HOME/Pictures/Wallpapers -o wal-set; 8 | sleep 5; 9 | done 10 | i = 0; 11 | done 12 | -------------------------------------------------------------------------------- /Dwm_solid/.config/kitty/colors.conf: -------------------------------------------------------------------------------- 1 | background #3A3343 2 | foreground #ECDFE1 3 | cursor #ECDFE1 4 | color0 #565575 5 | color1 #FF8080 6 | color2 #95FFA4 7 | color3 #FFE9AA 8 | color4 #C262D5 9 | color5 #C991E1 10 | color6 #AAFFE4 11 | color7 #CBE3E7 12 | color8 #100E23 13 | color9 #FF5485 14 | color10 #62D196 15 | color11 #FFB378 16 | color12 #CD99D7 17 | color13 #906CFF 18 | color14 #63F2F1 19 | color15 #A6B3CC 20 | 21 | 22 | -------------------------------------------------------------------------------- /Dwm_solid/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | input-ipc-server= /tmp/mpvsocket 2 | 3 | -------------------------------------------------------------------------------- /Dwm_solid/.config/mpv/mpvtube_playlists: -------------------------------------------------------------------------------- 1 | Sangeet @https://www.youtube.com/playlist?list=PL88kQYE_UywBzqdk0S9QrTwrGk6sTorBP 2 | -------------------------------------------------------------------------------- /Dwm_solid/.config/picom/picom.conf: -------------------------------------------------------------------------------- 1 | 2 | shadow = true ; 3 | shadow-radius = 0 ; 4 | shadow-offset-x = 10 ; 5 | shadow-offset-y = 10 ; 6 | shadow-opacity = 0.50 ; 7 | fading = true ; 8 | fade-delta = 6 ; 9 | fade-in-step = 0.03 ; 10 | fade-out-step = 0.03 ; 11 | backend = "glx" ; 12 | 13 | shadow-exclude = [ 14 | "name = 'Notification'", 15 | "class_g ?= 'Notify-osd'", 16 | "class_g = 'slop'", 17 | # "name = 'xmobar'", 18 | # "name = 'lemonbar'", 19 | "class_g = 'Conky'", 20 | "class_g = 'xscreen'", 21 | "_NET_WM_STATE@:32a = '_NET_WM_STATE_FULLSCREEN'" 22 | ] 23 | 24 | -------------------------------------------------------------------------------- /Dwm_solid/.config/polybar/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Terminate already running bar instances 4 | killall -q polybar 5 | 6 | int=$(iwgetid | getn 1) 7 | echo ${int} 8 | sed -i "s/interface = .*/interface = \"$int\"/g" ~/.config/polybar/config 9 | 10 | # Launch bar1 and bar2 11 | polybar white & 12 | #polybar bar2 & 13 | 14 | echo "Bars launched..." 15 | -------------------------------------------------------------------------------- /Dwm_solid/.config/polybar/scripts/hwinfo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin.env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | -------------------------------------------------------------------------------- /Dwm_solid/.config/polybar/scripts/load.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | my $load = capture { system q{uptime | awk '{print $(NF-2)}'} }; 10 | $load =~ s/\,\s*$//g; 11 | 12 | say " $load"; -------------------------------------------------------------------------------- /Dwm_solid/.config/polybar/scripts/memory.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | sub memory() { 8 | my $free = capture{system q{cat /proc/meminfo | grep MemFree | awk '{printf $2}'}}; 9 | my $total = capture{system q{cat /proc/meminfo | grep MemTotal | awk '{printf $2}'}}; 10 | 11 | my $percent = $free / $total * 100; 12 | print(" ".int($percent) . "%\n"); 13 | } 14 | 15 | memory(); -------------------------------------------------------------------------------- /Dwm_solid/.config/polybar/scripts/vpn.pl: -------------------------------------------------------------------------------- 1 | #!/usr/share/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | sub check_status { 10 | if ( -d "/proc/sys/net/ipv4/conf/tun0" ) { 11 | return 1; 12 | } elsif ( -d "/proc/sys/net/ipv4/conf/ppp0" ) { 13 | return 1; 14 | } else { 15 | return 0; 16 | } 17 | } 18 | 19 | sub proc_status { 20 | if (check_status == 1) { 21 | say(" On"); 22 | } else { 23 | say(" Off"); 24 | } 25 | } 26 | 27 | proc_status(); -------------------------------------------------------------------------------- /Dwm_solid/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /Dwm_solid/.config/ranger/plugins/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/ranger/plugins/__init__.pyo -------------------------------------------------------------------------------- /Dwm_solid/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Dwm_solid/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Dwm_solid/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /Dwm_solid/.config/ranger/plugins/devicons.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/ranger/plugins/devicons.pyo -------------------------------------------------------------------------------- /Dwm_solid/.config/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- 1 | import ranger.api 2 | from ranger.core.linemode import LinemodeBase 3 | from .devicons import * 4 | 5 | @ranger.api.register_linemode 6 | class DevIconsLinemode(LinemodeBase): 7 | name = "devicons" 8 | 9 | uses_metadata = False 10 | 11 | def filetitle(self, file, metadata): 12 | return devicon(file) + ' ' + file.relative_path 13 | 14 | @ranger.api.register_linemode 15 | class DevIconsLinemodeFile(LinemodeBase): 16 | name = "filename" 17 | 18 | def filetitle(self, file, metadata): 19 | return devicon(file) + ' ' + file.relative_path 20 | -------------------------------------------------------------------------------- /Dwm_solid/.config/ranger/plugins/devicons_linemode.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/ranger/plugins/devicons_linemode.pyo -------------------------------------------------------------------------------- /Dwm_solid/.config/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set show_hidden true 2 | set preview_images true 3 | set preview_images_method ueberzug 4 | set w3m_delay 0.1 5 | map shell dragon-drag-and-drop -a -x %p 6 | # a plugin that adds file glyphs / icon support to Ranger: 7 | # https://github.com/alexanderjeurissen/ranger_devicons 8 | default_linemode devicons 9 | map bw shell wal -i %f -o wal-set && cp %f ~/.config/wall.png && sleep 0.1s && notify-send "Theme changed" -i ~/.config/wall.png -t 3000 10 | -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zcompdump.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/zsh/.zcompdump.zwc -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/zsh/.zhistory -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zim/.latest_version: -------------------------------------------------------------------------------- 1 | 1.3.1 2 | -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zim/init.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/zsh/.zim/init.zsh.zwc -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zim/login_init.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/zsh/.zim/login_init.zsh.zwc -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zim/zimfw.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/zsh/.zim/zimfw.zsh.zwc -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zlogin: -------------------------------------------------------------------------------- 1 | # Start configuration added by Zim install {{{ 2 | # 3 | # User configuration sourced by login shells 4 | # 5 | 6 | # Initialize Zim 7 | source ${ZIM_HOME}/login_init.zsh -q &! 8 | # }}} End configuration added by Zim install 9 | 10 | -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zlogin.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/zsh/.zlogin.zwc -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zprofile: -------------------------------------------------------------------------------- 1 | 2 | export PATH="$HOME/.cargo/bin:$PATH" 3 | -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zprofile.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/zsh/.zprofile.zwc -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zshenv: -------------------------------------------------------------------------------- 1 | # Start configuration added by Zim install {{{ 2 | # 3 | # User configuration sourced by all invocations of the shell 4 | # 5 | 6 | # Define Zim location 7 | : ${ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim} 8 | # }}} End configuration added by Zim install 9 | 10 | -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zshenv.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/zsh/.zshenv.zwc -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zshrc: -------------------------------------------------------------------------------- 1 | source $HOME/.config/zsh/config/zim_config.zsh 2 | source $HOME/.config/zsh/config/user_config.zsh 3 | source $HOME/.config/zsh/config/alias.zsh 4 | 5 | cd $HOME 6 | 7 | # To customize prompt, run `p10k configure` or edit ~/.config/zsh/config/p10k.zsh. 8 | [[ ! -f ~/.config/zsh/config/p10k.zsh ]] || source ~/.config/zsh/config/p10k.zsh 9 | -------------------------------------------------------------------------------- /Dwm_solid/.config/zsh/.zshrc.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Dwm_solid/.config/zsh/.zshrc.zwc -------------------------------------------------------------------------------- /Screenshots/StartupPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/StartupPage.png -------------------------------------------------------------------------------- /Screenshots/Theme-change.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/Theme-change.gif -------------------------------------------------------------------------------- /Screenshots/bspwm_Forest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Forest1.png -------------------------------------------------------------------------------- /Screenshots/bspwm_Forest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Forest2.png -------------------------------------------------------------------------------- /Screenshots/bspwm_Lake1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Lake1.png -------------------------------------------------------------------------------- /Screenshots/bspwm_Lake2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Lake2.png -------------------------------------------------------------------------------- /Screenshots/bspwm_Nier1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Nier1.png -------------------------------------------------------------------------------- /Screenshots/bspwm_Nier2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Nier2.png -------------------------------------------------------------------------------- /Screenshots/bspwm_Pywal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Pywal1.png -------------------------------------------------------------------------------- /Screenshots/bspwm_Pywal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Pywal2.png -------------------------------------------------------------------------------- /Screenshots/bspwm_Pywal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Pywal3.png -------------------------------------------------------------------------------- /Screenshots/bspwm_Tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/bspwm_Tea.png -------------------------------------------------------------------------------- /Screenshots/dwm_Girl1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/dwm_Girl1.png -------------------------------------------------------------------------------- /Screenshots/dwm_Girl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/dwm_Girl2.png -------------------------------------------------------------------------------- /Screenshots/dwm_Solid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/dwm_Solid1.png -------------------------------------------------------------------------------- /Screenshots/dwm_Solid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/dwm_Solid2.png -------------------------------------------------------------------------------- /Screenshots/i3_Mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Screenshots/i3_Mountains.png -------------------------------------------------------------------------------- /StartupPage/fonts/roboto-mono-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/StartupPage/fonts/roboto-mono-medium.ttf -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/Cyberleft-1080P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/Cyberleft-1080P.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/animecity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/animecity.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/anonymous.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/anonymous.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/bar.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/bicycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/bicycle.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/board.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/car.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/city.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/connected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/connected.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/cybercity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/cybercity.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/empire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/empire.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/fantasy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/fantasy.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/flower.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/forest.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/girl.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/glasses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/glasses.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/index.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/kaneki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/kaneki.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/killer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/killer.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/lake.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/lost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/lost.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/machine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/machine.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/madness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/madness.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/miami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/miami.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/modern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/modern.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/morpho.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/morpho.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/mountains.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/nier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/nier.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/pink.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/pink_mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/pink_mountains.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/rain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/rain.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/rising-sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/rising-sun.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/rocket.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/ship.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/ship.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/skull.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/smoke.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/solid.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/sombra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/sombra.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/store.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/tea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/tea.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/terminator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/terminator.jpg -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/violet.png -------------------------------------------------------------------------------- /Wallpapers/Wallpapers/winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/Wallpapers/Wallpapers/winter.png -------------------------------------------------------------------------------- /bin/bin/0x0: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ -f "${1}" ] && op=cat 3 | ${op:-echo} "${1:-`cat -`}" | curl -s -F file='@-' 'http://0x0.st' | tee /dev/stderr | xclip -sel clip 4 | 5 | #[ -f "$1" ] && op="cat" 6 | #var="$(${op:-echo} "${@:-$(cat -)}" | curl -s -F file='@-' 'http://0x0.st')" 7 | #echo "$var" 8 | #printf "%s" "$var" | xclip -sel clip 9 | -------------------------------------------------------------------------------- /bin/bin/ascii: -------------------------------------------------------------------------------- 1 | ░░░░░░░▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄░░░░░░ 2 | ░░░░░░█░░▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄░░█░░░░░ 3 | ░░░░░░█░█░▀░░░░░▀░░▀░░░░█░█░░░░░ 4 | ░░░░░░█░█░░░░░░░░▄▀▀▄░▀░█░█▄▀▀▄░ 5 | █▀▀█▄░█░█░░▀░░░░░█░░░▀▄▄█▄▀░░░█░ 6 | ▀▄▄░▀██░█▄░▀░░░▄▄▀░░░░░░░░░░░░▀▄ 7 | ░░▀█▄▄█░█░░░░▄░░█░░░▄█░░░▄░▄█░░█ 8 | ░░░░░▀█░▀▄▀░░░░░█░██░▄░░▄░░▄░███ 9 | ░░░░░▄█▄░░▀▀▀▀▀▀▀▀▄░░▀▀▀▀▀▀▀░▄▀░ 10 | ░░░░█░░▄█▀█▀▀█▀▀▀▀▀▀█▀▀█▀█▀▀█░░░ 11 | ░░░░▀▀▀▀░░▀▀▀░░░░░░░░▀▀▀░░▀▀░░░░ 12 | -------------------------------------------------------------------------------- /bin/bin/ascii1: -------------------------------------------------------------------------------- 1 | ───▄▄▄ 2 | ─▄▀░▄░▀▄ 3 | ─█░█▄▀░█ 4 | ─█░▀▄▄▀█▄█▄▀ 5 | -------------------------------------------------------------------------------- /bin/bin/ascii2: -------------------------------------------------------------------------------- 1 | ___ 2 | ,, // \\ 3 | (_,\/ \_/ \ 4 | \ \_/_\_/> 5 | /_/ /_/ 6 | -------------------------------------------------------------------------------- /bin/bin/autostart: -------------------------------------------------------------------------------- 1 | pkill picom 2 | pkill polybar 3 | pkill batterywarn 4 | pkill dunst 5 | pkill bar_small 6 | feh --bg-fill ~/Wallpapers/solid.png 7 | sleep 0.1 8 | 9 | xrdb -remove 10 | xrdb $HOME/xrdb/solid/solid 11 | picom --config $HOME/.config/picom/picom.conf & 12 | $HOME/bin/batterywarn & 13 | $HOME/bin/dunstxres & 14 | dunst & 15 | $HOME/bin/bar_small & 16 | pkill -USR1 dwm 17 | 18 | exec /usr/local/bin/dwm 19 | -------------------------------------------------------------------------------- /bin/bin/autostart-xmonad: -------------------------------------------------------------------------------- 1 | pkill picom 2 | pkill polybar 3 | pkill batterywarn 4 | pkill dunst 5 | pkill polybar 6 | feh --bg-fill ~/Wallpapers/nier.png 7 | sleep 0.1 8 | 9 | xrdb -remove 10 | xrdb $HOME/xrdb/nier/nier 11 | picom --config $HOME/.config/picom/picom.conf & 12 | $HOME/bin/batterywarn & 13 | $HOME/bin/dunstxres & 14 | dunst & 15 | $HOME/.config/polybar/launch.sh 16 | -------------------------------------------------------------------------------- /bin/bin/balls: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Script that shows terminal colors 3 | # -- elenapan @ github 4 | 5 | f=3 b=4 6 | for j in f b; do 7 | for i in {0..7}; do 8 | printf -v $j$i %b "\e[${!j}${i}m" 9 | done 10 | done 11 | d=$'\e[1m' 12 | t=$'\e[0m' 13 | v=$'\e[7m' 14 | 15 | # Symbol 16 | s= 17 | # s= 18 | 19 | cat << EOF 20 | $f0$s $d$s $t 21 | $f1$s $d$s $t 22 | $f2$s $d$s $t 23 | $f3$s $d$s $t 24 | $f4$s $d$s $t 25 | $f5$s $d$s $t 26 | $f6$s $d$s $t 27 | $f7$s $d$s $t 28 | EOF 29 | 30 | -------------------------------------------------------------------------------- /bin/bin/battery.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/bin/bin/battery.ogg -------------------------------------------------------------------------------- /bin/bin/colorballs: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Script that shows terminal colors 3 | # -- elenapan @ github 4 | 5 | f=3 b=4 6 | for j in f b; do 7 | for i in {0..7}; do 8 | printf -v $j$i %b "\e[${!j}${i}m" 9 | done 10 | done 11 | d=$'\e[1m' 12 | t=$'\e[0m' 13 | v=$'\e[7m' 14 | 15 | # Symbol 16 | #s= 17 | s= 18 | 19 | cat << EOF 20 | 21 | $f0$s$d$s$t $f1$s$d$s$t $f2$s$d$s$t $f3$s$d$s$t 22 | $f4$s$d$s$t $f5$s$d$s$t $f6$s$d$s$t $f7$s$d$s$t 23 | 24 | EOF 25 | -------------------------------------------------------------------------------- /bin/bin/colorpick: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | while read -r line; do 4 | IFS=', ' read -r r g b hex <<< $line 5 | 6 | printf '%s\n\e[48;2;%s;%s;%sm \e[m\n' \ 7 | "$hex" "$r" "$g" "$b" 8 | done < <(stdbuf -oL colorpicker) 9 | echo $hex | xclip -sel clip 10 | -------------------------------------------------------------------------------- /bin/bin/darken: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #Darken/Lighten hex value 3 | # credit: https://github.com/vizs 4 | 5 | hex2rgb() { 6 | s="${1#??}" 7 | printf '%d %d %d' "0x${1%????}" "0x${s%??}" "0x${1#????}" 8 | } 9 | 10 | t=${2:-0.8} 11 | set -- $(hex2rgb "$1") 12 | 13 | for i; do 14 | a="$(echo "$i*$t" | bc)" 15 | a="${a%.*}" 16 | [ "$a" -gt 55 ] && a=255 17 | printf '%02x' ${a} 18 | done 19 | printf '\n' 20 | -------------------------------------------------------------------------------- /bin/bin/devour: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Hides your terminal window before launching an external program and unhides it after quitting. 4 | 5 | id=$(xdo id) 6 | xdo hide 7 | ("$@" > /dev/null 2>&1) 8 | xdo show "$id" 9 | 10 | 11 | # WID=$(xdo id) 12 | 13 | # $SHELL -i -c "xdo hide 14 | # $* > /dev/null 2>&1 15 | # xdo show $WID" 16 | -------------------------------------------------------------------------------- /bin/bin/dunstxres: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . $HOME/bin/xvars 4 | 5 | # inject xvars colors into dunst config 6 | sed -i "s/background = .*/background = \"$XBG\"/g" ~/.config/dunst/dunstrc 7 | sed -i "s/foreground = .*/foreground = \"$XFG\"/g" ~/.config/dunst/dunstrc 8 | sed -i "s/frame_color = .*/frame_color = \"$XFG\"/g" ~/.config/dunst/dunstrc 9 | 10 | killall dunst 11 | dunst & 12 | -------------------------------------------------------------------------------- /bin/bin/dwmstart: -------------------------------------------------------------------------------- 1 | /usr/local/bin/dwm 2 | sleep 0.1 3 | sh -c /home/tanish2002/bin/autostart 4 | -------------------------------------------------------------------------------- /bin/bin/generate: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | convert -size 128x128 canvas:"$1" -separate -attenuate 0.13 \ 3 | +noise gaussian -combine -colorspace sRGB static.png 4 | -------------------------------------------------------------------------------- /bin/bin/getn: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # $1 is which number you want 4 | # $2 is delimeter (defaults to space) 5 | 6 | in=$(cat -) 7 | n="$1" 8 | IFS="${2:- }" 9 | set -- $in 10 | eval "s=$"${n} 11 | printf '%s\n' ${s} 12 | -------------------------------------------------------------------------------- /bin/bin/human: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # http://github.com/mitchweaver/bin 4 | # 5 | # convert bytes to human readable format 6 | # 7 | # Ex: 8 | # 6579057657 -> '6.1G' 9 | # 562952382 -> '536.8M' 10 | # 11 | 12 | [ "$1" ] || { read -r inp ; set -- $inp ; } 13 | 14 | if [ $1 -gt 1073741824 ] ; then 15 | res=$(( $1 * 10 / 1073741824 )) 16 | pow=GB 17 | elif [ $1 -gt 1048576 ] ; then 18 | res=$(( $1 * 10 / 1048576 )) 19 | pow=MB 20 | elif [ $1 -gt 1024 ] ; then 21 | res=$(( $1 * 10 / 1024 )) 22 | pow=KB 23 | else 24 | printf '%sB\n' ${1:-0} 25 | exit 26 | fi 27 | 28 | printf "%s$pow\n" "${res%?}.${res#${res%?}}" 29 | -------------------------------------------------------------------------------- /bin/bin/mnt: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | #Mount a disk 4 | 5 | disk=$(ls -l /dev/disk/by-label | tail -n +2 | cut -d ' ' -f 10- | rofi -dmenu -p "Mount") || exit 1 6 | disk=$(echo ${disk##*/}) 7 | 8 | mkdir -p $HOME/mnt/$disk 9 | sudo mount "/dev/$disk" "$HOME/mnt/$disk" && echo "Mounted the Disk on $HOME/mnt/$disk" 10 | -------------------------------------------------------------------------------- /bin/bin/moe: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ -z "${1}" ] && echo "Usage: moe " || localFile="${1}" 3 | uploadResult="$(curl -H "token: 8Ygnr3EeH1bFAb0E0cVAudfwpDTS2m7IG3ADPiv4LJMvG4I2665CqVtQAXbtpdNv" -sf -F files[]="@${localFile}" "https://safe.fiery.me/api/upload")" 4 | uploadResult="$(echo "${uploadResult}" | grep -Po '"url":"[A-Za-z0-9]+.*?"' | sed 's/"url":"//;s/"//')" 5 | echo "${uploadResult}" | xclip -sel clip 6 | echo "${uploadResult}" 7 | -------------------------------------------------------------------------------- /bin/bin/performance_mode: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # Toggle compton 3 | # Requires that you have allowed cpufreq-set to run without password. 4 | if pgrep picom; then 5 | pkill picom 6 | sudo cpufreq-set -g performance 7 | echo "ON" 8 | else 9 | picom --config ~/.config/picom/picom.conf & 10 | sudo cpufreq-set -g powersave 11 | echo "OFF" 12 | fi 13 | -------------------------------------------------------------------------------- /bin/bin/picom_anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/bin/bin/picom_anim -------------------------------------------------------------------------------- /bin/bin/pm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | opt="$(echo "Poweroff \nReboot \nLogout " | rofi -dmenu -width 22 -lines 4 -i -p "Power Menu ❯")" 3 | echo $opt 4 | case $opt in 5 | "Logout ") 6 | bspc quit 2>/dev/null || killall -TERM dwm 2>/dev/null 7 | ;; 8 | "Reboot ") 9 | sudo reboot 10 | ;; 11 | "Poweroff ") 12 | sudo shutdown -P now 13 | ;; 14 | "*") 15 | echo none 16 | ;; 17 | esac 18 | 19 | -------------------------------------------------------------------------------- /bin/bin/rofi-clip: -------------------------------------------------------------------------------- 1 | rofi -modi "clipboard:greenclip print" -show clipboard -run-command '{cmd}' 2 | 3 | -------------------------------------------------------------------------------- /bin/bin/rofi-emoji: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | chosen=$(grep -v "#" ~/bin/emoji | \ 4 | rofi -dmenu -p "Emoji ❯" -columns 2 \ 5 | -kb-row-select "Tab" -kb-row-tab "" -i) 6 | 7 | [ "$chosen" != "" ] || exit 8 | 9 | c=$(echo "$chosen" | sed "s/ .*//") 10 | echo "$c" | tr -d '\n' | xclip -selection clipboard 11 | notify-send "'$c' copied to clipboard." -t 3000 & 12 | 13 | -------------------------------------------------------------------------------- /bin/bin/scratchpad: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | SCRATCHPAD_SESSION="$(tmux ls | grep scratchpad)" 4 | SCRATCHPAD_WINDOW="$(xdotool search --classname scratchpad)" 5 | 6 | # If there is no such window 7 | # (Checking for the window should not be necessary if AwesomeWM does it already) 8 | if [ ${#SCRATCHPAD_WINDOW} -eq "0" ]; then 9 | # If the session does not exist, create a new one 10 | if [ ${#SCRATCHPAD_SESSION} -eq "0" ]; then 11 | kitty -1 --class scratchpad -e tmux new-session -s scratchpad & 12 | # Else attach to the session 13 | else 14 | kitty -1 --class scratchpad -e tmux attach -t scratchpad & 15 | fi 16 | fi 17 | -------------------------------------------------------------------------------- /bin/bin/song-name_xmo: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | song_skroll=${XDG_CACHE_HOME:-~/.cache}/song_skroll 3 | 4 | rm $bar_fifo $song_skroll 2>/dev/null ||: 5 | 6 | 7 | while sleep 3 ; do 8 | while pgrep mpv >/dev/null && \ 9 | : | nc -U -N /tmp/mpvsocket 2>/dev/null ;do 10 | $HOME/bin/song-name | skroll -n 40 -d 0.2 -r >>$song_skroll 11 | done 12 | rm $song_skroll 2>/dev/null ||: 13 | done & 14 | 15 | get_song() { 16 | [ -f $song_skroll ] || return 1 17 | while read -r line ; do 18 | song=$line 19 | done <$song_skroll 20 | printf '🎵 %s |' "${song:-loading...}" 21 | } 22 | 23 | printf '%s' "$(get_song)" 24 | 25 | -------------------------------------------------------------------------------- /bin/bin/stmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/bin/bin/stmessage -------------------------------------------------------------------------------- /bin/bin/tb: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ "${1}" ] && cat "${1}" | nc termbin.com 9999 | tee /dev/stderr | xclip -sel clip || printf 'Usage: tb \n' 3 | -------------------------------------------------------------------------------- /bin/bin/vifmrun: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | export FIFO_UEBERZUG="/tmp/vifm-ueberzug-${PPID}" 3 | 4 | if [ ! -f "/usr/bin/ueberzug" ]; then 5 | vifm 6 | exit 7 | fi 8 | 9 | function cleanup { 10 | rm "$FIFO_UEBERZUG" 2>/dev/null 11 | pkill -P $$ 2>/dev/null 12 | } 13 | pkill -P $$ 2>/dev/null 14 | rm "$FIFO_UEBERZUG" 2>/dev/null 15 | mkfifo "$FIFO_UEBERZUG" >/dev/null 16 | trap cleanup EXIT 2>/dev/null 17 | tail --follow "$FIFO_UEBERZUG" | ueberzug layer --silent --parser bash 2>&1 >/dev/null & 18 | 19 | vifm "$@" 20 | cleanup 21 | -------------------------------------------------------------------------------- /bin/bin/visualizer: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Toggle visualizer: 3 | # Kill it if it is running or spawn it if it does not running 4 | xdotool search --class Visualizer &>/dev/null && (ps x | grep "kitty --class Visualizer" | grep -v grep | awk '{print $1}' | xargs kill) || kitty --class Visualizer -o background_opacity=0 -o font_size=6 -o window_margin_width=0 -e cava & 5 | -------------------------------------------------------------------------------- /bin/bin/vol: -------------------------------------------------------------------------------- 1 | get_vol() { 2 | speakers=$(amixer sget Master | grep '\[on\]' 2>/dev/null) 3 | getvol=$(amixer sget Master) 4 | getvol=${getvol%%\%*} 5 | getvol=${getvol##*\[} 6 | [ "${speakers}" ] && echo ' ' ${getvol}% || echo ' muted' 7 | 8 | } 9 | printf '%s' "$(get_vol)" 10 | 11 | 12 | -------------------------------------------------------------------------------- /bin/bin/xmobar/vol: -------------------------------------------------------------------------------- 1 | get_vol() { 2 | speakers=$(amixer sget Master | grep '\[on\]' 2>/dev/null) 3 | getvol=$(amixer sget Master) 4 | getvol=${getvol%%\%*} 5 | getvol=${getvol##*\[} 6 | [ "${speakers}" ] && echo '🔊 ' ${getvol}% || echo ' muted' 7 | 8 | } 9 | printf '%s' "$(get_vol)" 10 | 11 | 12 | -------------------------------------------------------------------------------- /common/.doom.d/README.org: -------------------------------------------------------------------------------- 1 | config.org -------------------------------------------------------------------------------- /common/.doom.d/modules/config/default/packages.el: -------------------------------------------------------------------------------- 1 | ;; -*- no-byte-compile: t; -*- 2 | ;;; config/default/packages.el 3 | 4 | (package! avy :pin "509471bad0e8094b8639729ec39ca141fae7d4bd") 5 | (package! drag-stuff :pin "6d06d846cd37c052d79acd0f372c13006aa7e7c8") 6 | (package! link-hint :pin "7440704cacb5c0fab35fff8ec59d30fbea17f44a") 7 | 8 | (unless (featurep! :editor evil) 9 | (package! expand-region :pin "ea6b4cbb9985ddae532bd2faf9bb00570c9f2781")) 10 | -------------------------------------------------------------------------------- /common/.doom.d/themes/bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/common/.doom.d/themes/bill.png -------------------------------------------------------------------------------- /common/.doom.d/themes/richard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/common/.doom.d/themes/richard.png -------------------------------------------------------------------------------- /common/xrdb/pywal/pywal: -------------------------------------------------------------------------------- 1 | st.alpha: 0.85 2 | st.font: Hack Nerd Font Mono:pixelsize=15:style=Bold 3 | -------------------------------------------------------------------------------- /i3/.config/kitty/font.conf: -------------------------------------------------------------------------------- 1 | ../../Documents/dotfiles-master/theme-miami/.config/kitty/font.conf -------------------------------------------------------------------------------- /i3/.config/kitty/kitty.conf: -------------------------------------------------------------------------------- 1 | ../../Documents/dotfiles-master/config/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /i3/.config/kitty/theme.conf: -------------------------------------------------------------------------------- 1 | ../../Documents/dotfiles-master/theme-miami/.config/kitty/theme.conf -------------------------------------------------------------------------------- /i3/.config/polybar/launch.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # Terminate already running bar instances 4 | killall -q polybar 5 | 6 | # Wait until the processes have been shut down 7 | while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done 8 | 9 | # Launch bar1 and bar2 10 | polybar example -r & 11 | 12 | 13 | echo "Bars launched..." 14 | -------------------------------------------------------------------------------- /i3/.config/polybar/polyhide.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | xdopath=$(which xdo) if [ $? -ne 0 ]; then echo "Cannot find \`xdo\` command." 1>&2 exit 1 fi 4 | 5 | id=$(xdo id -N "Polybar") 6 | 7 | if xprop -id $id | grep -q "Normal"; then xdo hide -N "Polybar" else xdo show -N "Polybar" fi 8 | -------------------------------------------------------------------------------- /i3/.config/polybar/scripts/player-mpris-simple.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | player_status=$(playerctl status 2> /dev/null) 4 | 5 | if [ "$player_status" = "Playing" ]; then 6 | echo "#1 $(playerctl metadata artist) - $(playerctl metadata title)" 7 | elif [ "$player_status" = "Paused" ]; then 8 | echo "#2 $(playerctl metadata artist) - $(playerctl metadata title)" 9 | else 10 | echo "#3" 11 | fi 12 | -------------------------------------------------------------------------------- /i3/.config/rofi/scripts/i3_empty_workspace.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | MAX_DESKTOPS=20 4 | 5 | WORKSPACES=$(seq -s '\n' 1 1 ${MAX_DESKTOPS}) 6 | 7 | EMPTY_WORKSPACE=$( (i3-msg -t get_workspaces | tr ',' '\n' | grep num | awk -F: '{print int($2)}' ; \ 8 | echo -e ${WORKSPACES} ) | sort -n | uniq -u | head -n 1) 9 | 10 | i3-msg workspace ${EMPTY_WORKSPACE} 11 | 12 | -------------------------------------------------------------------------------- /i3/.config_/bspwm/bspwm-rules: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | id="${1?}" \ 4 | instance="$3" \ 5 | class="$2"; 6 | 7 | case "$class" in 8 | (foo) 9 | bar;; 10 | ("") 11 | unset -v _NET_WM_PID; 12 | . /dev/fd/0 2>/dev/null </dev/null)" in 22 | (spotify) 23 | echo desktop=^3 state=pseudo_tiled follow=on center=on;; 24 | esac;; 25 | esac; 26 | 27 | 28 | -------------------------------------------------------------------------------- /i3/.config_/polybar/config.bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/i3/.config_/polybar/config.bottom.png -------------------------------------------------------------------------------- /i3/.config_/polybar/config.top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/i3/.config_/polybar/config.top.png -------------------------------------------------------------------------------- /i3/.config_/polybar/config2.top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/i3/.config_/polybar/config2.top.png -------------------------------------------------------------------------------- /i3/.config_/polybar/scripts/hwinfo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin.env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | -------------------------------------------------------------------------------- /i3/.config_/polybar/scripts/load.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | my $load = capture { system q{uptime | awk '{print $(NF-2)}'} }; 10 | $load =~ s/\,\s*$//g; 11 | 12 | say " $load"; -------------------------------------------------------------------------------- /i3/.config_/polybar/scripts/memory.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | sub memory() { 8 | my $free = capture{system q{cat /proc/meminfo | grep MemFree | awk '{printf $2}'}}; 9 | my $total = capture{system q{cat /proc/meminfo | grep MemTotal | awk '{printf $2}'}}; 10 | 11 | my $percent = $free / $total * 100; 12 | print(" ".int($percent) . "%\n"); 13 | } 14 | 15 | memory(); -------------------------------------------------------------------------------- /i3/.config_/polybar/scripts/vpn.pl: -------------------------------------------------------------------------------- 1 | #!/usr/share/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | sub check_status { 10 | if ( -d "/proc/sys/net/ipv4/conf/tun0" ) { 11 | return 1; 12 | } elsif ( -d "/proc/sys/net/ipv4/conf/ppp0" ) { 13 | return 1; 14 | } else { 15 | return 0; 16 | } 17 | } 18 | 19 | sub proc_status { 20 | if (check_status == 1) { 21 | say(" On"); 22 | } else { 23 | say(" Off"); 24 | } 25 | } 26 | 27 | proc_status(); -------------------------------------------------------------------------------- /i3/.config_/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/i3/.config_/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /i3/.config_/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/i3/.config_/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /i3/.config_/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/i3/.config_/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /i3/.config_/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/i3/.config_/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /i3/.config_/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- 1 | import ranger.api 2 | from ranger.core.linemode import LinemodeBase 3 | from .devicons import * 4 | 5 | @ranger.api.register_linemode 6 | class DevIconsLinemode(LinemodeBase): 7 | name = "devicons" 8 | 9 | uses_metadata = False 10 | 11 | def filetitle(self, file, metadata): 12 | return devicon(file) + ' ' + file.relative_path 13 | 14 | @ranger.api.register_linemode 15 | class DevIconsLinemodeFile(LinemodeBase): 16 | name = "filename" 17 | 18 | def filetitle(self, file, metadata): 19 | return devicon(file) + ' ' + file.relative_path 20 | -------------------------------------------------------------------------------- /i3/.config_/ranger/rc (copy 1).conf: -------------------------------------------------------------------------------- 1 | map bw shell wal -c -i %f && cp %f ~/.config/wall.png 2 | set show_hidden true 3 | set preview_images true 4 | set preview_images_method ueberzug 5 | -------------------------------------------------------------------------------- /i3/.config_/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set show_hidden true 2 | set preview_images true 3 | set preview_images_method ueberzug 4 | map shell dragon-drag-and-drop -a -x %p 5 | # a plugin that adds file glyphs / icon support to Ranger: 6 | # https://github.com/alexanderjeurissen/ranger_devicons 7 | default_linemode devicons 8 | map bw shell wal -i %f && cp %f ~/.config/wall.png 9 | -------------------------------------------------------------------------------- /xmonad_solid/.config/dunst/random-schemes.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | 4 | for (( i = 0; i < 10; )); do 5 | 6 | for (( i = 0; i < 10;)); do 7 | wal -i $HOME/Pictures/Wallpapers -o wal-set; 8 | sleep 5; 9 | done 10 | i = 0; 11 | done 12 | -------------------------------------------------------------------------------- /xmonad_solid/.config/kitty/colors.conf: -------------------------------------------------------------------------------- 1 | background #3A3343 2 | foreground #ECDFE1 3 | cursor #ECDFE1 4 | color0 #565575 5 | color1 #FF8080 6 | color2 #95FFA4 7 | color3 #FFE9AA 8 | color4 #C262D5 9 | color5 #C991E1 10 | color6 #AAFFE4 11 | color7 #CBE3E7 12 | color8 #100E23 13 | color9 #FF5485 14 | color10 #62D196 15 | color11 #FFB378 16 | color12 #CD99D7 17 | color13 #906CFF 18 | color14 #63F2F1 19 | color15 #A6B3CC 20 | 21 | 22 | -------------------------------------------------------------------------------- /xmonad_solid/.config/mpv/mpv.conf: -------------------------------------------------------------------------------- 1 | input-ipc-server= /tmp/mpvsocket 2 | 3 | -------------------------------------------------------------------------------- /xmonad_solid/.config/mpv/mpvtube_playlists: -------------------------------------------------------------------------------- 1 | Sangeet @https://www.youtube.com/playlist?list=PL88kQYE_UywBzqdk0S9QrTwrGk6sTorBP 2 | -------------------------------------------------------------------------------- /xmonad_solid/.config/polybar/launch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Terminate already running bar instances 4 | killall -q polybar 5 | 6 | int=$(iwgetid | getn 1) 7 | echo ${int} 8 | 9 | sed -i "s/interface = .*/interface = \"$int\"/g" ~/.config/polybar/config 10 | 11 | 12 | # Launch bar1 and bar2 13 | polybar bottom & 14 | polybar top & 15 | 16 | echo "Bars launched..." 17 | -------------------------------------------------------------------------------- /xmonad_solid/.config/polybar/scripts/hwinfo.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin.env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | -------------------------------------------------------------------------------- /xmonad_solid/.config/polybar/scripts/load.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | my $load = capture { system q{uptime | awk '{print $(NF-2)}'} }; 10 | $load =~ s/\,\s*$//g; 11 | 12 | say " $load"; -------------------------------------------------------------------------------- /xmonad_solid/.config/polybar/scripts/memory.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use Capture::Tiny qw(capture); 6 | 7 | sub memory() { 8 | my $free = capture{system q{cat /proc/meminfo | grep MemFree | awk '{printf $2}'}}; 9 | my $total = capture{system q{cat /proc/meminfo | grep MemTotal | awk '{printf $2}'}}; 10 | 11 | my $percent = $free / $total * 100; 12 | print(" ".int($percent) . "%\n"); 13 | } 14 | 15 | memory(); -------------------------------------------------------------------------------- /xmonad_solid/.config/polybar/scripts/vpn.pl: -------------------------------------------------------------------------------- 1 | #!/usr/share/env perl 2 | 3 | use strict; 4 | use warnings; 5 | use feature qw(say); 6 | use Capture::Tiny qw(capture); 7 | 8 | 9 | sub check_status { 10 | if ( -d "/proc/sys/net/ipv4/conf/tun0" ) { 11 | return 1; 12 | } elsif ( -d "/proc/sys/net/ipv4/conf/ppp0" ) { 13 | return 1; 14 | } else { 15 | return 0; 16 | } 17 | } 18 | 19 | sub proc_status { 20 | if (check_status == 1) { 21 | say(" On"); 22 | } else { 23 | say(" Off"); 24 | } 25 | } 26 | 27 | proc_status(); -------------------------------------------------------------------------------- /xmonad_solid/.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/ranger/plugins/__init__.py -------------------------------------------------------------------------------- /xmonad_solid/.config/ranger/plugins/__init__.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/ranger/plugins/__init__.pyo -------------------------------------------------------------------------------- /xmonad_solid/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/ranger/plugins/__pycache__/__init__.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /xmonad_solid/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/ranger/plugins/__pycache__/devicons.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /xmonad_solid/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-38.opt-1.pyc -------------------------------------------------------------------------------- /xmonad_solid/.config/ranger/plugins/devicons.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/ranger/plugins/devicons.pyo -------------------------------------------------------------------------------- /xmonad_solid/.config/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- 1 | import ranger.api 2 | from ranger.core.linemode import LinemodeBase 3 | from .devicons import * 4 | 5 | @ranger.api.register_linemode 6 | class DevIconsLinemode(LinemodeBase): 7 | name = "devicons" 8 | 9 | uses_metadata = False 10 | 11 | def filetitle(self, file, metadata): 12 | return devicon(file) + ' ' + file.relative_path 13 | 14 | @ranger.api.register_linemode 15 | class DevIconsLinemodeFile(LinemodeBase): 16 | name = "filename" 17 | 18 | def filetitle(self, file, metadata): 19 | return devicon(file) + ' ' + file.relative_path 20 | -------------------------------------------------------------------------------- /xmonad_solid/.config/ranger/plugins/devicons_linemode.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/ranger/plugins/devicons_linemode.pyo -------------------------------------------------------------------------------- /xmonad_solid/.config/ranger/rc.conf: -------------------------------------------------------------------------------- 1 | set show_hidden true 2 | set preview_images true 3 | set preview_images_method ueberzug 4 | set w3m_delay 0.1 5 | map shell dragon-drag-and-drop -a -x %p 6 | # a plugin that adds file glyphs / icon support to Ranger: 7 | # https://github.com/alexanderjeurissen/ranger_devicons 8 | default_linemode devicons 9 | map bw shell wal -i %f -o wal-set && cp %f ~/.config/wall.png && sleep 0.1s && notify-send "Theme changed" -i ~/.config/wall.png -t 3000 10 | -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zcompdump.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zcompdump.zwc -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zhistory -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zim/.latest_version: -------------------------------------------------------------------------------- 1 | 1.3.2 2 | -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zim/init.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zim/init.zsh.zwc -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zim/init.zsh.zwc.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zim/init.zsh.zwc.old -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zim/login_init.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zim/login_init.zsh.zwc -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zim/zimfw.zsh.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zim/zimfw.zsh.zwc -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zlogin: -------------------------------------------------------------------------------- 1 | # Start configuration added by Zim install {{{ 2 | # 3 | # User configuration sourced by login shells 4 | # 5 | 6 | # Initialize Zim 7 | source ${ZIM_HOME}/login_init.zsh -q &! 8 | # }}} End configuration added by Zim install 9 | 10 | -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zlogin.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zlogin.zwc -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zprofile: -------------------------------------------------------------------------------- 1 | 2 | export PATH="$HOME/.cargo/bin:$PATH" 3 | -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zprofile.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zprofile.zwc -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zshenv: -------------------------------------------------------------------------------- 1 | # Start configuration added by Zim install {{{ 2 | # 3 | # User configuration sourced by all invocations of the shell 4 | # 5 | 6 | # Define Zim location 7 | : ${ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim} 8 | # }}} End configuration added by Zim install 9 | 10 | -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zshenv.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zshenv.zwc -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zshrc: -------------------------------------------------------------------------------- 1 | source $HOME/.config/zsh/config/zim_config.zsh 2 | source $HOME/.config/zsh/config/user_config.zsh 3 | source $HOME/.config/zsh/config/alias.zsh 4 | source $HOME/.config/zsh/config/history.zsh 5 | 6 | cd $HOME 7 | 8 | # To customize prompt, run `p10k configure` or edit ~/.config/zsh/config/p10k.zsh. 9 | source ~/.config/zsh/config/p10k.zsh 10 | -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zshrc.zwc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zshrc.zwc -------------------------------------------------------------------------------- /xmonad_solid/.config/zsh/.zshrc.zwc.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanish2002/dot-files/054a57f39cee76df4c37de5aab5e08c2ea8989f7/xmonad_solid/.config/zsh/.zshrc.zwc.old -------------------------------------------------------------------------------- /xres: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------