This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible | |
| filetype off | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'tpope/vim-obsession' | |
| Plug 'scrooloose/nerdcommenter' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Tmux settings | |
| # Set XTerm key bindings | |
| setw -g xterm-keys on | |
| # Count sessions start at 1 | |
| set -g base-index 1 | |
| # Use vim bindings | |
| setw -g mode-keys vi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plugins=( | |
| git | |
| zsh-autosuggestions | |
| zsh-syntax-highlighting | |
| fast-syntax-highlighting | |
| zsh-autocomplete | |
| ) | |
| setopt nosharehistory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| [ $(xfconf-query -c accessibility -p /MouseKeys) == "false" ] \ | |
| && $(xfconf-query -c accessibility -p /MouseKeys -s true) \ | |
| || $(xfconf-query -c accessibility -p /MouseKeys -s false) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| xdotool windowactivate `xdotool search --desktop 0 --class "chromium"` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Session.vim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| xdotool windowactivate `xdotool search --desktop 0 --class "alacritty"` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "coc.preferences.jumpCommand": "tabe", | |
| "eslint.alwaysShowStatus": true, | |
| "diagnostic.errorSign": " ", | |
| "diagnostic.warningSign": " ", | |
| "diagnostic.infoSign": " ", | |
| "diagnostic.hintSign": " ", | |
| "suggest.completionItemKindLabels": { | |
| "text": "", | |
| "method": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #vimiumHintMarkerContainer div.internalVimiumHintMarker, #vimiumHintMarkerContainer div.vimiumHintMarker { | |
| padding: 3px 4px; | |
| background: #444; | |
| border: none; | |
| box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); | |
| } | |
| #vimiumHintMarkerContainer div span { | |
| color: #fff; | |
| text-shadow: none; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| name = shivapand | |
| email = [email protected] | |
| [core] | |
| editor = nvim | |
| [difftool] | |
| prompt = true | |
| [diff] | |
| tool = nvimdiff | |
| [difftool "nvimdiff"] |
OlderNewer