From fd2001cd614dfa0d55ec820b7c358a1795d3ea27 Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Tue, 14 Dec 2021 11:42:41 -0500 Subject: Simplify vim configuration --- dot_vimrc | 69 +++++++++++++-------------------------------------------------- 1 file changed, 14 insertions(+), 55 deletions(-) (limited to 'dot_vimrc') diff --git a/dot_vimrc b/dot_vimrc index 4bc5f32..9586033 100644 --- a/dot_vimrc +++ b/dot_vimrc @@ -1,69 +1,28 @@ -" p -" Line numbering -"set number -" Set syntax highlighting +" Appearance syntax on colorscheme brookstream +set bg=dark +set modeline +set modelines=1 + " Tabbing -set et +set expandtab set shiftwidth=4 set smarttab set autoindent + " We want a mouse in consoles, so:" set mouse=a -filetype plugin on -filetype indent on -set textwidth=80 -set bg=dark -set modeline -set modelines=1 -set pastetoggle= -command -nargs=1 Hugged ://s/\(.*\) ;\(.*\)\(||\)/\1 lightgreen;\2 RyanKavanagh ||/c -""" Don't connect to X clipboard, slow -""" set clipboard=exclude:.* -" For :sp, switching and minimum height -" map j_ -" map k_ -" set wmh=0 -" REQUIRED. This makes vim invoke Latex-Suite when you open a tex file. -filetype plugin on -" IMPORTANT: grep will sometimes skip displaying the file name if you -" search in a singe file. This will confuse Latex-Suite. Set your grep -" program to alway generate a file-name. -set grepprg=grep\ -nH\ $* - -" Haskell crud -au BufEnter *.hs compiler ghc -let g:haddock_browser = "/usr/bin/w3m" -let g:ghc_version = 6.8.2 -let g:ghc = "/usr/bin/ghc" - -" Support my daylog -au BufNewFile,BufRead daylog,daylog.dch setf debchangelog -au BufNewFile,BufRead *.tikz setf tex -map! i_ -map! -map! i_ -map! - -" minibufexpl.vim -"map \mbe :MiniBufExplorer -"map \mbc :CMiniBufExplorer -"map \mbu :UMiniBufExplorer -"map \mbt :TMiniBufExplorer +" Use system plugins +filetype plugin on -"let g:miniBufExplMapWindowNavVim = 1 -let g:miniBufExplMapWindowNavArrows = 1 -let g:miniBufExplMapCTabSwitchBufs = 1 +" Use system per-filetype indentation +filetype indent on -let g:Tex_CompileRule_dvi = 'latex-mk $*' -let g:Tex_CompileRule_pdf = 'latex-mk --pdflatex $*' -let g:Tex_DefaultTargetFormat = 'pdf' -let g:Tex_ItemStyle_inparaenum = '\item' +set textwidth=80 -let g:po_translator = 'Ryan Kavanagh ' +set pastetoggle= -au BufEnter ~/.mutt/tmp/mutt-* set textwidth=72 | set list lcs=trail:-,nbsp:% -au BufEnter ~/.mutt/tmp/neomutt-* set textwidth=72 | set list lcs=trail:-,nbsp:% +au BufEnter ~/.mutt/tmp/* set textwidth=72 | set list lcs=trail:-,nbsp:% au BufEnter */gophermap set list lcs=trail:-,nbsp:%,tab:»·,space:· -- cgit v1.2.3