Created
May 8, 2018 11:50
-
-
Save audacioustux/a65a8bad6b1f3a3fdf04723c229b5fa2 to your computer and use it in GitHub Desktop.
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.vim --- Dark powered mode of SpaceVim | |
" Copyright (c) 2016-2017 Wang Shidong & Contributors | |
" Author: Wang Shidong < wsdjeg at 163.com > | |
" URL: https://spacevim.org | |
" License: GPLv3 | |
"============================================================================= | |
" SpaceVim Options: {{{ | |
let g:spacevim_enable_debug = 1 | |
let g:spacevim_realtime_leader_guide = 1 | |
let g:spacevim_enable_tabline_filetype_icon = 1 | |
let g:spacevim_enable_statusline_display_mode = 0 | |
let g:spacevim_enable_os_fileformat_icon = 1 | |
let g:spacevim_buffer_index_type = 1 | |
let g:spacevim_enable_vimfiler_welcome = 1 | |
let g:spacevim_enable_debug = 1 | |
" }}} | |
" SpaceVim Layers: {{{ | |
call SpaceVim#layers#load('default') | |
call SpaceVim#layers#load('cscope') | |
call SpaceVim#layers#load('github') | |
call SpaceVim#layers#load('autocomplete') | |
call SpaceVim#layers#load('debug') | |
call SpaceVim#layers#load('lsp', | |
\ { | |
\ 'filetypes' : ['python', | |
\ 'javascript', | |
\ 'c', | |
\ 'cpp', | |
\ 'html' | |
\ ], | |
\ } | |
\ ) | |
call SpaceVim#layers#load('lang#html') | |
call SpaceVim#layers#load('lang#javascript') | |
call SpaceVim#layers#load('lang#python') | |
call SpaceVim#layers#load('lang#c') | |
call SpaceVim#layers#load('shell', | |
\ { | |
\ 'default_position' : 'top', | |
\ 'default_height' : 30, | |
\ } | |
\ ) | |
call SpaceVim#layers#load('ui') | |
" }}} | |
let g:spacevim_lint_on_the_fly = 1 | |
let g:spacevim_colorscheme = 'gruvbox' | |
let g:clang_executable = '/usr/bin/clang' | |
let g:ycm_python_binary_path = 'python' | |
let g:ycm_global_ycm_extra_conf = '/home/tux/programming/.ycm_extra_conf.py' | |
let g:spacevim_enable_ycm = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment