diff options
| Commit | 55a9334ea65cd5b5437a71dbbcb9fe29d64a306a (patch ) | |
|---|---|---|
| Author | Syndamia <kamen@syndamia.com> | 2023-04-29 16:08:06 +0300 |
| Committer | Syndamia <kamen@syndamia.com> | 2023-04-29 16:08:06 +0300 |
| Files | 8a2b3987c39ee036ba61473aa1369edb984268fe /.vim | |
| dotfiles-55a9334ea65cd5b5437a71dbbcb9fe29d64a306a.tar dotfiles-55a9334ea65cd5b5437a71dbbcb9fe29d64a306a.tar.gz dotfiles-55a9334ea65cd5b5437a71dbbcb9fe29d64a306a.zip | ||
| Parent | 29fedb13ef41f94d4c383c8207a02497694d622a (diff) | |
[.vimrc] Added matchit, added persistant undo history, updated shortmess and changed TOhtml options
2 files changed, 13 insertions, 0 deletions
| -rw-r--r-- | .vim/.vimrc | 6 | ||||
| -rw-r--r-- | .vim/startup/settings.vim | 7 |
diff --git a/.vim/.vimrc b/.vim/.vimrc index 008cbd4..cf8a66d 100644 --- a/.vim/.vimrc +++ b/.vim/.vimrc @@ -34,6 +34,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 |
