Skip to content

Instantly share code, notes, and snippets.

@Animesh-Ghosh
Created February 21, 2020 08:21
Show Gist options
  • Select an option

  • Save Animesh-Ghosh/d37fa5bcba257d1ebef9802ec2296742 to your computer and use it in GitHub Desktop.

Select an option

Save Animesh-Ghosh/d37fa5bcba257d1ebef9802ec2296742 to your computer and use it in GitHub Desktop.
A modest .vimrc
" 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