Skip to content

Instantly share code, notes, and snippets.

@rudibroekhuizen
Last active June 2, 2020 09:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rudibroekhuizen/56464f47e9940724a3991ab55db79ca4 to your computer and use it in GitHub Desktop.
Save rudibroekhuizen/56464f47e9940724a3991ab55db79ca4 to your computer and use it in GitHub Desktop.
space-vim config file (liuchengxu/space-vim)
" You can enable the existing layers in space-vim and
" exclude the partial plugins in a certain layer.
" The command Layer is vaild in the function Layers().
" Use exclude option if you don't want the full Layer,
" e.g., Layer 'better-defaults', { 'exclude': 'itchyny/vim-cursorword' }
function! Layers()
" Default layers, recommended!
Layer 'fzf'
Layer 'unite'
Layer 'better-defaults'
Layer 'python'
Layer 'syntax-checking'
Layer 'git'
Layer 'github'
Layer 'file-manager'
Layer 'docker'
Layer 'markdown'
endfunction
" Put your private plugins here.
function! UserInit()
" Space has been set as the default leader key,
" if you want to change it, uncomment and set it here.
" let g:spacevim_leader = "<\Space>"
" let g:spacevim_localleader = ','
" Install private plugins
" Plug 'extr0py/oni'
" Plug 'scrooloose/nerdtree'
" Plug 'jistr/vim-nerdtree-tabs'
Plug 'Valloric/YouCompleteMe'
Plug 'rodjek/vim-puppet'
Plug 'hashivim/vim-terraform'
Plug 'robbles/logstash.vim'
endfunction
" Put your costom configurations here, e.g., change the colorscheme.
function! UserConfig()
" If you enable airline layer and have installed the powerline fonts, set it here.
" let g:airline_powerline_fonts=1
" color desert
let g:nerdtree_tabs_open_on_console_startup=2
let g:NERDTreeWinSize = 25
let g:terraform_align=1
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment