From 55a9334ea65cd5b5437a71dbbcb9fe29d64a306a Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sat, 29 Apr 2023 16:08:06 +0300 Subject: [.vimrc] Added matchit, added persistant undo history, updated shortmess and changed TOhtml options --- .vim/.vimrc | 6 ++++++ .vim/startup/settings.vim | 7 +++++++ 2 files changed, 13 insertions(+) (limited to '.vim') diff --git a/.vim/.vimrc b/.vim/.vimrc index 008cbd4..cf8a66d 100644 --- a/.vim/.vimrc +++ b/.vim/.vimrc @@ -33,6 +33,12 @@ Plug 'vim-scripts/syntaxhaskell.vim', { 'for': 'haskell' } " haskell: Better syn call plug#end() +""" +""" Package plugins +""" + +packadd! matchit + """ """ Manual plugins """ diff --git a/.vim/startup/settings.vim b/.vim/startup/settings.vim index c0f6e4d..b164fe9 100644 --- a/.vim/startup/settings.vim +++ b/.vim/startup/settings.vim @@ -66,6 +66,13 @@ set wildmenu set wildmode=list:longest,full set history=1000 set incsearch +set shortmess=acTOI +set undodir=~/.vim/vimundo +set undofile + +# For TOhtml +let g:html_line_ids = 1 +let g:html_dynamic_folds = 1 autocmd BufRead,BufNewFile * set tw=0 " Sets textwidth to 0 for all files (set with autocmd since just doing "set tw=0" can be overridden) autocmd BufRead,BufNewFile *.component.css set filetype=css -- cgit v1.2.3