Created
February 21, 2020 08:21
-
-
Save Animesh-Ghosh/d37fa5bcba257d1ebef9802ec2296742 to your computer and use it in GitHub Desktop.
A modest .vimrc
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
| " My .vimrc file. | |
| " set line numbers | |
| set number relativenumber | |
| " set syntax highlight | |
| syntax on | |
| " set tabsize to 4 | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| " set command window height | |
| set showcmd | |
| " set cmdheight=2 | |
| " set auto-indentation | |
| set autoindent | |
| " set highlighted search | |
| set hlsearch | |
| " set incremental search | |
| " set inc | |
| " match brackets | |
| set showmatch | |
| " plugins | |
| call plug#begin('~/.vim/plugins') | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' | |
| Plug 'tpope/vim-fugitive' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'rafi/awesome-vim-colorschemes' | |
| call plug#end() | |
| let NERDTreeShowHidden = 1 | |
| let airline#extensions#fugitiveline#enabled = 1 | |
| let NERDTreeShowIgnoredStatus = 1 | |
| let airline_detect_modified = 1 | |
| let airline_theme = 'deus' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment