diff options
Diffstat (limited to 'vim/init')
-rw-r--r-- | vim/init/basic.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/init/basic.vim b/vim/init/basic.vim index 344b463..09ed985 100644 --- a/vim/init/basic.vim +++ b/vim/init/basic.vim | |||
@@ -23,11 +23,11 @@ | |||
23 | 23 | ||
24 | let mapleader = "," " Always use comma as leader key | 24 | let mapleader = "," " Always use comma as leader key |
25 | set nocompatible " Disable vi compatible, today is 20XX | 25 | set nocompatible " Disable vi compatible, today is 20XX |
26 | set autochdir " Automatically cd to current file | ||
27 | set path=.,** " Allow :find with completion | 26 | set path=.,** " Allow :find with completion |
28 | set mouse= " Disable mouse selection | 27 | set mouse= " Disable mouse selection |
29 | set winaltkeys=no " Allow alt key for mapping | 28 | set winaltkeys=no " Allow alt key for mapping |
30 | set cursorline | 29 | set cursorline |
30 | " set autochdir " Automatically cd to current file | ||
31 | 31 | ||
32 | " Turn persistent undo on | 32 | " Turn persistent undo on |
33 | " means that you can undo even when you close a buffer/VIM | 33 | " means that you can undo even when you close a buffer/VIM |