Last active
October 30, 2017 06:14
-
-
Save srebalaji/60501814febba5d495247601a26e2e78 to your computer and use it in GitHub Desktop.
Vim configuration
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
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' |
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
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