mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08:00
22 lines
553 B
VimL
22 lines
553 B
VimL
" add line number
|
|
:set number
|
|
" :set colorcolumn=80
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
" => Copying/Pasting
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
" Enables copying from VIM to MAC clipboard
|
|
"
|
|
|
|
set clipboard=unnamed
|
|
let g:syntastic_javascript_args = "-c ./.eslintrc"
|
|
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
" => Window management
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
" close and open windows quickly
|
|
map <leader>wc <C-W>c
|
|
map <leader>wn <C-W>n
|
|
|