Skip to content

Instantly share code, notes, and snippets.

@srebalaji
Last active October 30, 2017 06:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srebalaji/60501814febba5d495247601a26e2e78 to your computer and use it in GitHub Desktop.
Save srebalaji/60501814febba5d495247601a26e2e78 to your computer and use it in GitHub Desktop.
Vim configuration
set number
set noet ci pi sts=0 sw=4 ts=4
set cursorline
set showcmd
filetype indent on
set wildmenu
set lazyredraw
set showmatch
set incsearch
set hlsearch
syntax enable
set background=dark
colorscheme codedark
set runtimepath^=~/.vim/bundle/ctrlp.vim
execute pathogen#infect()
cabbrev nt NERDTree
let g:NERDTreeChDirMode = 2
let g:ctrlp_working_path_mode = 'rw'
Codedark is the theme I'm using here.
https://github.com/tomasiser/vim-code-dark
I have used ctrlp to fuzzy search files and folders.
https://github.com/kien/ctrlp.vim
Pathogen.Vim to manage runtimepath
NERDTree to manage file directory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment