Merge branch 'master' of github.com:amix/vimrc
This commit is contained in:
commit
83980d8f24
2 changed files with 17 additions and 17 deletions
|
@ -17,13 +17,13 @@ from os import path
|
|||
# --- Globals ----------------------------------------------
|
||||
PLUGINS = """
|
||||
auto-pairs https://github.com/jiangmiao/auto-pairs
|
||||
ale https://github.com/w0rp/ale
|
||||
ale https://github.com/dense-analysis/ale
|
||||
vim-yankstack https://github.com/maxbrunsfeld/vim-yankstack
|
||||
ack.vim https://github.com/mileszs/ack.vim
|
||||
bufexplorer https://github.com/jlanzarotta/bufexplorer
|
||||
ctrlp.vim https://github.com/ctrlpvim/ctrlp.vim
|
||||
mayansmoke https://github.com/vim-scripts/mayansmoke
|
||||
nerdtree https://github.com/scrooloose/nerdtree
|
||||
nerdtree https://github.com/preservim/nerdtree
|
||||
nginx.vim https://github.com/chr4/nginx.vim
|
||||
open_file_under_cursor.vim https://github.com/amix/open_file_under_cursor.vim
|
||||
tlib https://github.com/tomtom/tlib_vim
|
||||
|
@ -51,7 +51,7 @@ vim-flake8 https://github.com/nvie/vim-flake8
|
|||
vim-pug https://github.com/digitaltoad/vim-pug
|
||||
lightline.vim https://github.com/itchyny/lightline.vim
|
||||
lightline-ale https://github.com/maximbaz/lightline-ale
|
||||
vim-abolish https://github.com/tpope/tpope-vim-abolish
|
||||
vim-abolish https://github.com/tpope/vim-abolish
|
||||
rust.vim https://github.com/rust-lang/rust.vim
|
||||
vim-markdown https://github.com/plasticboy/vim-markdown
|
||||
vim-gist https://github.com/mattn/vim-gist
|
||||
|
|
|
@ -76,7 +76,7 @@ else
|
|||
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store
|
||||
endif
|
||||
|
||||
"Always show current position
|
||||
" Always show current position
|
||||
set ruler
|
||||
|
||||
" Height of the command bar
|
||||
|
@ -109,6 +109,7 @@ set magic
|
|||
|
||||
" Show matching brackets when text indicator is over them
|
||||
set showmatch
|
||||
|
||||
" How many tenths of a second to blink when matching brackets
|
||||
set mat=2
|
||||
|
||||
|
@ -123,7 +124,6 @@ if has("gui_macvim")
|
|||
autocmd GUIEnter * set vb t_vb=
|
||||
endif
|
||||
|
||||
|
||||
" Add a bit extra margin to the left
|
||||
set foldcolumn=1
|
||||
|
||||
|
|
Loading…
Reference in a new issue