Browse Source

Update

pull/18/head
Harish Karumuthil 3 years ago
parent
commit
9b74ed3e95
  1. 3
      home/.config/nvim/init.vim

3
home/.config/nvim/init.vim

@ -61,6 +61,9 @@ au BufEnter *.sshconf set ft=sshconfig
autocmd VimEnter *.py SyntasticToggleMode autocmd VimEnter *.py SyntasticToggleMode
" Disable sytax for big files
" autocmd BufWinEnter * if line2byte(line("$") + 1) > 10000 | set ft=text | let b:deoplete_disable_auto_complete = 1 | endif
" autocmd BufEnter * if getfsize(expand("%")) > 10000 | set ft=text | endif
" Syntax based folding found be slow. In most of the cases, we will do indenting according to syntax. " Syntax based folding found be slow. In most of the cases, we will do indenting according to syntax.
autocmd FileType java set foldmethod=indent autocmd FileType java set foldmethod=indent

Loading…
Cancel
Save