dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

init.vim (448B) [raw]


      1 " init.vim -- the config for neovim
      2 "
      3 " Used for specific neovim customization!
      4 
      5 " First, just source the regular Vim stuff
      6 set runtimepath+=~/.vim,~/.vim/after
      7 set packpath+=~/.vim
      8 
      9 if filereadable(expand("~/.vimrc"))
     10     " On some machines, I prefer to use a ~/.vimrc
     11     source ~/.vimrc
     12 else
     13     source ~/.vim/vimrc
     14 endif
     15 
     16 " no numbers in terminal
     17 autocmd TermOpen * setlocal nonumber
     18 
     19 " incrementally show substitutions!
     20 set inccommand=nosplit