dotfiles/vimrc
Flo 96e5966121 update vim and zsh default config
vim : do not convert tab into spaces ..
zsh : vi alias + editor, screen alias
2018-06-23 23:34:49 +02:00

17 lines
415 B
VimL

execute pathogen#infect()
syntax on
filetype plugin indent on
"colors molokai
colors monokai
let g:airline_powerline_fonts = 1
filetype plugin indent on
" show existing tab with 4 spaces width
set tabstop=4
set softtabstop=0 noexpandtab
" when indenting with '>', use 4 spaces width
set shiftwidth=4
" Enable highlighted search
set hlsearch
" Disable VIM matching parenthesis highlighting
let loaded_matchparen = 1