Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vim-config
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mtrame
vim-config
Commits
273ab56d
Commit
273ab56d
authored
5 years ago
by
mtrame
Browse files
Options
Downloads
Patches
Plain Diff
added html completiion (I think)
parent
0a4e331f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.vimrc
+12
-11
12 additions, 11 deletions
.vimrc
with
12 additions
and
11 deletions
.vimrc
+
12
−
11
View file @
273ab56d
" 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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment