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
| [ | |
| { | |
| "context": "Editor && vim_mode == normal", | |
| "bindings": { | |
| // General Editor Actions | |
| "space n": "workspace::NewFile", | |
| "space o": "file_finder::Toggle", | |
| "space a": "command_palette::Toggle", | |
| // Code Navigation, Symbols, and Refactor |
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
| # Custom binds | |
| alias vzs='vim ~/.bashrc' | |
| alias szs='source ~/.bashrc' | |
| alias vimrc='vim ~/.vimrc' | |
| alias l='ls -l' | |
| alias ..='cd ..' | |
| alias md='mkdir -p' |
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
| # --- Install Vim (enhanced) | |
| sudo dnf update | |
| sudo dnf install vim-enhanced | |
| # --- Install Dev Tools --- | |
| sudo dnf groupinstall "Development Tools" "Development Libraries" |
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
| " Vim Plug ----------------------------------------------------------------- | |
| if empty(glob('~/.vim/autoload/plug.vim')) | |
| silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
| \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
| endif | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'preservim/nerdtree' | |
| Plug 'tpope/vim-surround' | |
| Plug 'morhetz/gruvbox' |
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
| " Polyglot Ignore ---------------------------------------------------------- | |
| let g:polyglot_disabled = ['ts', 'js', 'tsx', 'jsx'] | |
| " Vim Plug ----------------------------------------------------------------- | |
| if empty(glob('~/.vim/autoload/plug.vim')) | |
| silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
| \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
| endif | |
| call plug#begin('~/.vim/plugged') |
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
| # --- Custom binds --- | |
| # Config shortcuts | |
| alias vzs='vim ~/.zshrc' | |
| alias szs='source ~/.zshrc' | |
| alias vimrc='vim ~/.vimrc' | |
| # Replacements | |
| alias cat='bat' | |
| alias catp='bat --style=plain' |
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": "ctrl+cmd+,", | |
| "command": "workbench.action.openSettingsJson" | |
| }, | |
| { | |
| "key": "ctrl+;", | |
| "command": "workbench.action.terminal.toggleTerminal" | |
| }, | |
| { |
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
| { | |
| "editor.minimap.enabled": false, | |
| "editor.formatOnSave": true, | |
| "editor.fontSize": 12, | |
| "files.exclude": { | |
| "**/node_modules": true, | |
| "**/dist": true, | |
| "**/build": true, | |
| "**/.history": true | |
| }, |