Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jeffreysbrother
Created January 10, 2018 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffreysbrother/f0a5caf4f6c0523a5942c65a5776a7f6 to your computer and use it in GitHub Desktop.
Save jeffreysbrother/f0a5caf4f6c0523a5942c65a5776a7f6 to your computer and use it in GitHub Desktop.
SpaceVim config, etc
" 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 = ''
@jeffreysbrother
Copy link
Author

jeffreysbrother commented Jan 10, 2018

other stuff:

  • neovim
  • spacevim
  • ohmyzsh
  • spaceship theme for ohmyzsh (customized)
  • nord theme for vim, iterm2
  • iterm2 with 15pt Fira Code Retina font (with increased vertical spacing)... 14 pt Meslo LG Regular Nerd Font Complete for non-ASCII font

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment