Created
April 3, 2020 06:22
-
-
Save ciupam/0cd857120cb4d84ddbd3c8e2f7369146 to your computer and use it in GitHub Desktop.
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
| call plug#begin('~/.config/nvim/plugged/') | |
| Plug 'christoomey/vim-tmux-navigator' | |
| Plug 'tomasiser/vim-code-dark' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'jiangmiao/auto-pairs' | |
| call plug#end() | |
| syntax on | |
| set encoding=UTF-8 | |
| set smarttab | |
| set cindent | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set expandtab | |
| set relativenumber | |
| colorscheme codedark | |
| map <C-n> :NERDTreeToggle %<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment