Created
January 10, 2018 21:31
-
-
Save jeffreysbrother/f0a5caf4f6c0523a5942c65a5776a7f6 to your computer and use it in GitHub Desktop.
SpaceVim config, etc
This file contains hidden or 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#go') | |
call SpaceVim#layers#load('lang#haskell') | |
call SpaceVim#layers#load('lang#javascript') | |
" call SpaceVim#layers#load('lang#php') | |
call SpaceVim#layers#load('lang#python') | |
call SpaceVim#layers#load('lang#markdown') | |
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', | |
\{ | |
\'default_position': 'bottom', | |
\} | |
\) | |
call SpaceVim#layers#load('tools#screensaver') | |
" If there is a particular plugin you don't like, you can define this | |
" variable to disable them entirely: | |
" let g:spacevim_disabled_plugins=[ | |
" \ ['junegunn/fzf.vim'], | |
" \ ] | |
" If you want to add some custom plugins, use these options: | |
" let g:spacevim_custom_plugins = [ | |
" \ ['rakr/vim-two-firewatch'], | |
" \ ['jnurmine/Zenburn'], | |
" \ ] | |
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 = 0 | |
let g:spacevim_enable_statusline_display_mode = 1 | |
let g:spacevim_enable_os_fileformat_icon = 0 | |
let g:spacevim_buffer_index_type = 1 | |
let g:neomake_vim_enabled_makers = [] | |
let g:spacevim_lint_on_save = 0 | |
let g:spacevim_statusline_separator = 'fire' | |
" let g:spacevim_colorscheme = 'Anderson' | |
" let g:spacevim_colorscheme = 'onedark' | |
" let g:spacevim_colorscheme = 'twofirewatch' | |
" let g:spacevim_colorscheme = 'zenburn' | |
let g:spacevim_colorscheme = 'nord' | |
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 = '' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
other stuff: