1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-25 16:57:12 -07:00

remember more commands and use tabs for .gitconfig

This commit is contained in:
Connor Olding 2021-09-25 04:19:56 -07:00
parent f77f5c63cc
commit 78404d2614

View File

@ -60,7 +60,7 @@ if has('gui_running')
endif
if has('title') | set title | endif " terminal title
set history=8192 " command lines to remember
set history=10000 " command lines to remember
set number " lines
set ruler " write out the cursor position
set showcmd " show number of lines/etc. selected
@ -131,6 +131,8 @@ endf
" set TabFour as default
set tabstop=8 shiftwidth=4 expandtab softtabstop=4
" autocmd {{{1
if has('autocmd')
augroup tabs
au!
@ -140,6 +142,7 @@ if has('autocmd')
au BufRead,BufNewFile *.bt,*.1sc call TabFour()
au BufRead,BufNewFile *.ys call TabTwo()
au FileType javascript,processing call TabTwo()
au BufRead,BufNewFile .gitconfig call TabEight()
augroup END
augroup whatever