Browse Source
Update server.vim
Rm spell
Rm mouse support
Add pastetoggle
pull/1/head
Harish K
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
home/.config/nvim/server.vim
|
|
@ -30,10 +30,7 @@ command! CopyFilename :let @+=@% |
|
|
|
filetype on " required! |
|
|
|
filetype plugin indent on " Automatically detect file types. |
|
|
|
|
|
|
|
" set selection=exclusive " Do not inlcude char under cursor while doing visual selection |
|
|
|
set mouse=a |
|
|
|
set history=1000 " Store a ton of history (default is 20) |
|
|
|
set spell " Spell checking on |
|
|
|
set hidden " Allow buffer switching without saving |
|
|
|
set noswapfile |
|
|
|
set title |
|
|
@ -129,6 +126,9 @@ set scrolloff=0 " Minimum lines to keep above and below cursor |
|
|
|
set list |
|
|
|
" }}} |
|
|
|
|
|
|
|
" Press <F12> in insert mode to toggle paste mode |
|
|
|
set pastetoggle=<F12> |
|
|
|
|
|
|
|
" for JS {{{ |
|
|
|
let g:html_indent_inctags = "html,body,head,tbody" |
|
|
|
let g:html_indent_script1 = "inc" |
|
|
|