From 78404d261415a70311a00739fb07121e68534e1a Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sat, 25 Sep 2021 04:19:56 -0700 Subject: [PATCH] remember more commands and use tabs for .gitconfig --- home/vimrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/vimrc b/home/vimrc index d2393ff..b067fb5 100644 --- a/home/vimrc +++ b/home/vimrc @@ -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