summaryrefslogtreecommitdiff
path: root/.config/nvim/init.vim
blob: 6907a74908ad19f263f4aa5412e2ec29afafa55d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
if has('filetype')
  filetype indent plugin on
endif

if has('syntax')
  syntax on
endif

if has('mouse')
  set mouse=a
endif

if has('persistent_undo')
  set undodir=$HOME/.vim/undo
  set undofile
endif

lua require 'init'