Last active
August 18, 2017 13:36
-
-
Save audacioustux/3012a57d4f920aa74b72e38633147a21 to your computer and use it in GitHub Desktop.
spacevim config ~/.SpaceVim.d/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
" Dark powered mode of SpaceVim, generated by SpaceVim automatically. | |
let g:spacevim_enable_debug = 1 | |
let g:spacevim_realtime_leader_guide = 1 | |
call SpaceVim#layers#load('incsearch') | |
call SpaceVim#layers#load('lang#c') | |
call SpaceVim#layers#load('lang#elixir') | |
call SpaceVim#layers#load('lang#go') | |
call SpaceVim#layers#load('lang#haskell') | |
call SpaceVim#layers#load('lang#java') | |
call SpaceVim#layers#load('lang#javascript') | |
call SpaceVim#layers#load('lang#lua') | |
call SpaceVim#layers#load('lang#perl') | |
call SpaceVim#layers#load('lang#php') | |
call SpaceVim#layers#load('lang#python') | |
call SpaceVim#layers#load('lang#rust') | |
call SpaceVim#layers#load('lang#swig') | |
call SpaceVim#layers#load('lang#tmux') | |
call SpaceVim#layers#load('lang#vim') | |
call SpaceVim#layers#load('lang#xml') | |
call SpaceVim#layers#load('shell') | |
call SpaceVim#layers#load('tools#screensaver') | |
let g:spacevim_enable_vimfiler_welcome = 1 | |
let g:spacevim_enable_debug = 1 | |
let g:deoplete#auto_complete_delay = 150 | |
let g:spacevim_enable_tabline_filetype_icon = 1 | |
let g:spacevim_enable_os_fileformat_icon = 1 | |
let g:spacevim_buffer_index_type = 1 | |
let g:neomake_vim_enabled_makers = [] | |
if executable('vimlint') | |
call add(g:neomake_vim_enabled_makers, 'vimlint') | |
endif | |
if executable('vint') | |
call add(g:neomake_vim_enabled_makers, 'vint') | |
endif | |
if has('python3') | |
let g:ctrlp_map = '' | |
nnoremap <silent> <C-p> :Denite file_rec<CR> | |
endif | |
let g:clang2_placeholder_next = '' | |
let g:clang2_placeholder_prev = '' | |
let g:spacevim_default_indent = 4 | |
let g:spacevim_max_column = 80 | |
call SpaceVim#layers#load('ui') | |
" auto completion | |
let g:spacevim_enable_ycm = 1 | |
let g:spacevim_enable_neomake = 0 | |
let g:spacevim_lint_on_the_fly = 1 | |
set mouse=a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment