Browse Source

Update server.vim

Rm spell
Rm mouse support
Add pastetoggle
pull/1/head
Harish K 8 years ago
committed by GitHub
parent
commit
8fddb7c2d4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      home/.config/nvim/server.vim

6
home/.config/nvim/server.vim

@ -30,10 +30,7 @@ command! CopyFilename :let @+=@%
filetype on " required! filetype on " required!
filetype plugin indent on " Automatically detect file types. 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 history=1000 " Store a ton of history (default is 20)
set spell " Spell checking on
set hidden " Allow buffer switching without saving set hidden " Allow buffer switching without saving
set noswapfile set noswapfile
set title set title
@ -129,6 +126,9 @@ set scrolloff=0 " Minimum lines to keep above and below cursor
set list set list
" }}} " }}}
" Press <F12> in insert mode to toggle paste mode
set pastetoggle=<F12>
" for JS {{{ " for JS {{{
let g:html_indent_inctags = "html,body,head,tbody" let g:html_indent_inctags = "html,body,head,tbody"
let g:html_indent_script1 = "inc" let g:html_indent_script1 = "inc"

Loading…
Cancel
Save