vim-plug fixes, syntastic changes
* update vim-plug config to ensure NERDTree opens on locating command * fix issue with markdown plugin and stylus issue ¯\_(ツ)_/¯ * disable relative line numbers, for now
This commit is contained in:
@@ -12,7 +12,7 @@ Plug 'chriskempson/base16-vim'
|
|||||||
|
|
||||||
" utilities
|
" utilities
|
||||||
Plug 'kien/ctrlp.vim'
|
Plug 'kien/ctrlp.vim'
|
||||||
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | Plug 'Xuyuanp/nerdtree-git-plugin' | Plug 'ryanoasis/vim-devicons'
|
Plug 'scrooloose/nerdtree', { 'on': ['NERDTreeToggle', 'NERDTreeFind'] } | Plug 'Xuyuanp/nerdtree-git-plugin' | Plug 'ryanoasis/vim-devicons'
|
||||||
Plug 'mileszs/ack.vim'
|
Plug 'mileszs/ack.vim'
|
||||||
Plug 'Raimondi/delimitMate'
|
Plug 'Raimondi/delimitMate'
|
||||||
Plug 'tpope/vim-commentary'
|
Plug 'tpope/vim-commentary'
|
||||||
@@ -56,7 +56,7 @@ Plug 'leafgarland/typescript-vim', { 'for': 'typescript' }
|
|||||||
Plug 'juvenn/mustache.vim', { 'for': 'mustache' }
|
Plug 'juvenn/mustache.vim', { 'for': 'mustache' }
|
||||||
Plug 'digitaltoad/vim-jade', { 'for': 'jade' }
|
Plug 'digitaltoad/vim-jade', { 'for': 'jade' }
|
||||||
Plug 'cakebaker/scss-syntax.vim', { 'for': 'scss' }
|
Plug 'cakebaker/scss-syntax.vim', { 'for': 'scss' }
|
||||||
Plug 'wavded/vim-stylus', { 'for': 'stylus' }
|
Plug 'wavded/vim-stylus', { 'for': ['stylus', 'markdown'] }
|
||||||
Plug 'groenewege/vim-less', { 'for': 'less' }
|
Plug 'groenewege/vim-less', { 'for': 'less' }
|
||||||
Plug 'ap/vim-css-color', { 'for': 'css' }
|
Plug 'ap/vim-css-color', { 'for': 'css' }
|
||||||
Plug 'hail2u/vim-css3-syntax', { 'for': 'css' }
|
Plug 'hail2u/vim-css3-syntax', { 'for': 'css' }
|
||||||
|
|||||||
@@ -130,7 +130,7 @@ execute "set background=".$BACKGROUND
|
|||||||
execute "colorscheme ".$THEME
|
execute "colorscheme ".$THEME
|
||||||
|
|
||||||
" set number " show line numbers
|
" set number " show line numbers
|
||||||
set relativenumber " show relative line numbers
|
" set relativenumber " show relative line numbers
|
||||||
set number " show the current line number"
|
set number " show the current line number"
|
||||||
|
|
||||||
set wrap "turn on line wrapping
|
set wrap "turn on line wrapping
|
||||||
@@ -426,6 +426,8 @@ nmap <leader>f :Limelight!!<cr>
|
|||||||
let g:syntastic_typescript_tsc_args = '--module amd --target ES5 --noImplicitAny'
|
let g:syntastic_typescript_tsc_args = '--module amd --target ES5 --noImplicitAny'
|
||||||
let g:syntastic_typescript_checkers = ['tslint']
|
let g:syntastic_typescript_checkers = ['tslint']
|
||||||
let g:syntastic_javascript_checkers = ['jshint', 'jscs']
|
let g:syntastic_javascript_checkers = ['jshint', 'jscs']
|
||||||
|
let g:syntastic_error_symbol='✗'
|
||||||
|
let g:syntastic_warning_symbol='⚠'
|
||||||
|
|
||||||
" CtrlP ignore patterns
|
" CtrlP ignore patterns
|
||||||
" let g:ctrlp_custom_ignore = {
|
" let g:ctrlp_custom_ignore = {
|
||||||
|
|||||||
Reference in New Issue
Block a user