Created
April 23, 2017 10:52
-
-
Save dedoyle/62121a8caa44337532f1213300446f3d to your computer and use it in GitHub Desktop.
init-vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" global settings | |
let mapleader = "\<space>" | |
let g:spacevim_colorscheme = 'onedark' | |
" front end | |
call SpaceVim#layers#load('lang#javascrpt') | |
call SpaceVim#layers#load('lang#css') | |
" plugins | |
" emmet | |
let g:user_emmet_expandabbr_key='<Tab>' | |
imap <expr> <tab> emmet#expandAbbrIntelligent("\<tab>") | |
" ctags & tagbar | |
set tags=.tags; | |
map <C-F12> :!ctags -R --javascript-kinds=+p --fields=+iaS --extra=+q -f ~/www/.tags .<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment