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 -ga terminal-overrides ",screen-256color*:Tc" | |
| set-option -g default-terminal "screen-256color" | |
| set -s escape-time 0 | |
| # Prefix and other bindings remain unchanged | |
| unbind C-b | |
| set-option -g prefix C-a | |
| bind-key C-a send-prefix | |
| # Nord color scheme for status bar |
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 | |
| " Plug 'preservim/nerdtree' | |
| Plug 'terryma/vim-multiple-cursors' | |
| " Plug 'tpope/vim-surround' | |
| " Plug 'tpope/vim-commentary' | |
| " Plug 'easymotion/vim-easymotion' | |
| " Set leader key |
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
| [ | |
| { | |
| "key": "shift+tab", | |
| "command": "selectPrevSuggestion", | |
| "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" | |
| }, | |
| { | |
| "key": "tab", | |
| "command": "selectNextSuggestion", | |
| "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" |