summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vim/.vimrc6
-rw-r--r--.vim/startup/settings.vim7
2 files changed, 13 insertions, 0 deletions
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