Skip to content

Instantly share code, notes, and snippets.

@jeffreysbrother
Created January 10, 2018 21:31
Show Gist options
  • Select an option

  • Save jeffreysbrother/f0a5caf4f6c0523a5942c65a5776a7f6 to your computer and use it in GitHub Desktop.

Select an option

Save jeffreysbrother/f0a5caf4f6c0523a5942c65a5776a7f6 to your computer and use it in GitHub Desktop.

Revisions

  1. jeffreysbrother created this gist Jan 10, 2018.
    62 changes: 62 additions & 0 deletions init.vim
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,62 @@
    " 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 = ''