diff options
Diffstat (limited to '.config/nvim/general')
| -rw-r--r-- | .config/nvim/general/settings.vim | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/general/settings.vim b/.config/nvim/general/settings.vim index b348267..1f0b858 100644 --- a/.config/nvim/general/settings.vim +++ b/.config/nvim/general/settings.vim @@ -33,7 +33,7 @@ set updatetime=300                      " Faster completion  set timeoutlen=500                      " By default timeoutlen is 1000 ms  set formatoptions-=cro                  " Stop newline continution of comments  set clipboard=unnamedplus               " Copy paste between vim and everything else -"set autochdir                           " Your working directory will always be the same as your working directory +set autochdir                           " Your working directory will always be the same as your working directory  au! BufWritePost $MYVIMRC source %      " auto source when writing to init.vm alternatively you can run :source $MYVIMRC  |