Skip to content
Snippets Groups Projects
Commit 273ab56d authored by mtrame's avatar mtrame
Browse files

added html completiion (I think)

parent 0a4e331f
No related branches found
No related tags found
No related merge requests found
" URL: http://vim.wikia.com/wiki/Example_vimrc
" Authors: http://vim.wikia.com/wiki/Vim_on_Freenode
" Description: A minimal, but feature rich, example .vimrc. If you are a
" newbie, basing your first .vimrc on this file is a good choice.
" If you're a more advanced user, building your own .vimrc based
" on this file is still a good idea.
"------------------------------------------------------------
" Features {{{1
"
......@@ -124,6 +117,7 @@ set notimeout ttimeout ttimeoutlen=200
" Use <F11> to toggle between 'paste' and 'nopaste'
set pastetoggle=<F11>
set relativenumber
"------------------------------------------------------------
" Indentation options {{{1
......@@ -169,6 +163,10 @@ call plug#begin('~/.vim/plugged')
" Make sure you use single quotes
Plug 'xolox/vim-notes'
Plug 'junegunn/goyo.vim'
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
Plug 'junegunn/vim-easy-align'
......@@ -203,15 +201,18 @@ Plug '~/my-prototype-plugin'
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
" html completion, fuck 485 rn (9/15/19)
autocmd FileType html set omnifunc=htmlcomplete#CompleteTags
" Syntastic reccomended settings
"set statusline+=%#warningmsg#
"set statusline+=%{SyntasticStatuslineFlag()}
"set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
"let g:syntastic_always_populate_loc_list = 1
"let g:syntastic_auto_loc_list = 1
"let g:syntastic_check_on_open = 1
"let g:syntastic_check_on_wq = 0
"folding settings
set foldmethod=indent "fold based on indent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment