aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/init/basic.vim
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2024-11-28 13:12:56 +0800
committerHsieh Chin Fan <pham@topo.tw>2024-11-28 13:12:56 +0800
commit2c9ca86aa9317420afe10449a45a21f56ec4c22f (patch)
tree9abc5ea0ed79c67efa69d63d7fdec8ce0668d504 /vim/init/basic.vim
parent91f3e8c038e289009554e69f05abc75bccee8368 (diff)
Update
Diffstat (limited to 'vim/init/basic.vim')
-rw-r--r--vim/init/basic.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/init/basic.vim b/vim/init/basic.vim
index 173df2f..99802c5 100644
--- a/vim/init/basic.vim
+++ b/vim/init/basic.vim
@@ -59,11 +59,11 @@ set winaltkeys=no " Allow alt key for mapping
59set undofile 59set undofile
60if has('nvim') 60if has('nvim')
61 set undodir=~/.vim/.undodir/nvim 61 set undodir=~/.vim/.undodir/nvim
62 set verbosefile=/tmp/nvim.log
62else 63else
63 set undodir=~/.vim/.undodir/vim 64 set undodir=~/.vim/.undodir/vim
64endif 65endif
65 66
66set verbosefile=/tmp/nvim.log
67 67
68" Apply plugin and indent by filetype 68" Apply plugin and indent by filetype
69filetype plugin indent on 69filetype plugin indent on
@@ -158,7 +158,7 @@ set tabstop=4 softtabstop=4
158set expandtab 158set expandtab
159 159
160" Invisible chars 160" Invisible chars
161set nolist 161set list
162set listchars=tab:»·,extends:>,precedes:< 162set listchars=tab:»·,extends:>,precedes:<
163 163
164" }}} 164" }}}