1
0
Fork 0
mirror of synced 2024-12-25 00:03:20 -05:00
This commit is contained in:
Mirosław Pragłowski 2014-06-13 14:43:35 +02:00
parent 84246ce8b9
commit aaaea54e00

View file

@ -5,6 +5,20 @@ set number " line numbers
set nocompatible " choose no compatibility with legacy vi set nocompatible " choose no compatibility with legacy vi
set nowrap " don't wrap lines set nowrap " don't wrap lines
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => custom key maps
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" breaking the habits
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => custom ... WTF, don't remember ;)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
augroup VimCSS3Syntax augroup VimCSS3Syntax
autocmd! autocmd!
autocmd FileType css setlocal iskeyword+=- autocmd FileType css setlocal iskeyword+=-
@ -16,9 +30,9 @@ augroup reload_vimrc " {
autocmd BufWritePost $MYVIMRC source $MYVIMRC autocmd BufWritePost $MYVIMRC source $MYVIMRC
augroup END " } augroup END " }
"""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => my custom filetypes " => custom filetypes
""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" ruby " ruby
au FileType ruby,eruby setl ofu=rubycomplete#Complete au FileType ruby,eruby setl ofu=rubycomplete#Complete