Skip to content

Instantly share code, notes, and snippets.

@dedoyle
Created April 23, 2017 10:52
Show Gist options
  • Save dedoyle/62121a8caa44337532f1213300446f3d to your computer and use it in GitHub Desktop.
Save dedoyle/62121a8caa44337532f1213300446f3d to your computer and use it in GitHub Desktop.
init-vim
" 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