|
@ -28,10 +28,12 @@ Plug 'scrooloose/nerdcommenter' |
|
|
"Plug 'myusuf3/numbers.vim' |
|
|
"Plug 'myusuf3/numbers.vim' |
|
|
Plug 'Shougo/neocomplete.vim' |
|
|
Plug 'Shougo/neocomplete.vim' |
|
|
Plug 'Shougo/neosnippet.vim' |
|
|
Plug 'Shougo/neosnippet.vim' |
|
|
|
|
|
Plug 'Shougo/neosnippet-snippets' |
|
|
Plug 'easymotion/vim-easymotion' |
|
|
Plug 'easymotion/vim-easymotion' |
|
|
Plug 'bling/vim-airline' |
|
|
Plug 'bling/vim-airline' |
|
|
Plug 'tpope/vim-ragtag' |
|
|
Plug 'tpope/vim-ragtag' |
|
|
Plug 'surround.vim' |
|
|
Plug 'surround.vim' |
|
|
|
|
|
Plug 'tpope/vim-repeat' |
|
|
|
|
|
|
|
|
" html / templates |
|
|
" html / templates |
|
|
Plug 'mattn/emmet-vim', { 'for': 'html' } " emmet support for vim - easily create markdup wth CSS-like syntax |
|
|
Plug 'mattn/emmet-vim', { 'for': 'html' } " emmet support for vim - easily create markdup wth CSS-like syntax |
|
@ -47,13 +49,16 @@ Plug 'othree/es.next.syntax.vim', { 'for': 'javascript' } " ES6 and beyond synta |
|
|
" Go |
|
|
" Go |
|
|
Plug 'fatih/vim-go', { 'for': 'go' } " go support |
|
|
Plug 'fatih/vim-go', { 'for': 'go' } " go support |
|
|
|
|
|
|
|
|
|
|
|
" Colorschemes |
|
|
|
|
|
Plug 'altercation/vim-colors-solarized' |
|
|
|
|
|
|
|
|
" All of your Plugins must be added before the following line |
|
|
" All of your Plugins must be added before the following line |
|
|
call plug#end() " required |
|
|
call plug#end() " required |
|
|
filetype plugin indent on " required |
|
|
filetype plugin indent on " required |
|
|
" To ignore plugin indent changes, instead use: |
|
|
" To ignore plugin indent changes, instead use: |
|
|
"filetype plugin on |
|
|
"filetype plugin on |
|
|
|
|
|
|
|
|
" S E T T I N G S |
|
|
|
|
|
|
|
|
" S E T T I N G S |
|
|
set number |
|
|
set number |
|
|
set autoread |
|
|
set autoread |
|
|
|
|
|
|
|
@ -103,6 +108,8 @@ let g:airline_powerline_fonts = 1 |
|
|
|
|
|
|
|
|
" M A P P I N G S |
|
|
" M A P P I N G S |
|
|
let mapleader = "," |
|
|
let mapleader = "," |
|
|
|
|
|
" CtrlP for Tags |
|
|
|
|
|
nnoremap <leader><C-p> :CtrlPTag<cr> |
|
|
|
|
|
|
|
|
" Toggle NERDTree |
|
|
" Toggle NERDTree |
|
|
nmap <silent> <leader>k :NERDTreeToggle<cr> |
|
|
nmap <silent> <leader>k :NERDTreeToggle<cr> |
|
|