mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08:00
12 lines
415 B
VimL
12 lines
415 B
VimL
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
" => my custom settings
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
set number " line numbers
|
|
set nocompatible " choose no compatibility with legacy vi
|
|
set nowrap " don't wrap lines
|
|
|
|
augroup VimCSS3Syntax
|
|
autocmd!
|
|
autocmd FileType css setlocal iskeyword+=-
|
|
augroup END
|