Created
March 26, 2017 08:37
-
-
Save xhlwill/b2f0021d49ce3f2ebd3ae769a4379ed6 to your computer and use it in GitHub Desktop.
vim configuration
This file contains 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
execute pathogen#infect() | |
syntax enable | |
set background=dark | |
colorscheme solarized | |
filetype plugin on | |
filetype indent on | |
set nu | |
set ruler | |
set smarttab | |
set shiftwidth=2 | |
set tabstop=2 | |
set expandtab | |
set hlsearch | |
set incsearch | |
set showmatch | |
set laststatus=2 | |
python from powerline.vim import setup as powerline_setup | |
python powerline_setup() | |
python del powerline_setup | |
" autocmd vimenter * NERDTree | |
map <F5> :NERDTreeToggle<CR> | |
let NERDTreeShowHidden=1 | |
let javascript_enable_domhtmlcss = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment