Skip to content

Instantly share code, notes, and snippets.

@qazwsxal
Created May 3, 2017 19:06
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 qazwsxal/0d550dcdaf7bc033c44ee59c71a59c06 to your computer and use it in GitHub Desktop.
Save qazwsxal/0d550dcdaf7bc033c44ee59c71a59c06 to your computer and use it in GitHub Desktop.
" Basics
syntax on
filetype plugin on
set hidden
" Vundle setup
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Git wrapper (Fugitive)
Plugin 'tpope/vim-fugitive'
" delete/change/etc. surrounding marks (surround.vim)
Plugin 'tpope/vim-surround'
" Filesystem tree (NERDtree)
Plugin 'scrooloose/nerdtree'
" Git integration for NERDtree
Plugin 'Xuyuanp/nerdtree-git-plugin'
" Linter/Syntax
Plugin 'scrooloose/syntastic'
" Latex integration
Plugin 'LaTeX-Box-Team/LaTeX-Box'
" Tagbar
Plugin 'majutsushi/tagbar'
" Fancy status/tabline (VIM-AIRLINE)
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
" Solarized colours
Plugin 'altercation/vim-colors-solarized'
" Monokai colours
Plugin 'sickill/vim-monokai'
" Molokai colours
Plugin 'tomasr/molokai'
" AutoComment (NERDcommenter)
Plugin 'scrooloose/nerdcommenter'
" Code completion (neocomplete)
Plugin 'Shougo/neocomplete.vim'
" Python completion for neocomplete
Plugin 'davidhalter/jedi-vim'
" Align text
Plugin 'tommcdo/vim-lion'
" Fold python code
Plugin 'tmhedberg/SimpylFold'
" Fold Quickly
Plugin 'Konfekt/FastFold'
" Preview source code colours
Plugin 'ap/vim-css-color'
" HTML tag completion
Plugin 'othree/html5.vim'
Plugin 'docunext/closetag.vim'
" Rust official vim plugin
Plugin 'rust-lang/rust.vim'
" Rust code completion
Plugin 'racer-rust/vim-racer'
" VHDL plugin
Plugin 'Cognoscan/vim-vhdl'
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
" Display unpintable chars:
set list " Display unprintable characters f12 - switches
set listchars=tab:•\ ,trail:•,extends:»,precedes:« " Unprintable chars mapping
" Color scheme config
" " Solarized
" let g:solarized_termcolors =16
" let g:solarized_termtrans = 1
" colorscheme solarized
" set background=dark
" Monokai
colorscheme coral
" Airline config
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tagbar#enabled = 1
let g:airline#extensions#syntastic#enabled = 1
let g:airline#extensions#tagbar#flags = 'f'
let g:airline_powerline_fonts = 1
let g:airline_theme='coral'
let g:airline_solarized_bg = "dark"
set laststatus=2
" Tags
let Tlist_Use_Right_Window = 1
" Syntastic
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_python_checkers = ['pep8']
let g:syntastic_python_pylint_exe = 'python3 -m pylint'
let g:syntastic_rust_checkers = ['rustc']
"let g:syntastic_python_pylint_args ="–-const-rgx=’[a-z_][a-z0-9_]{2,30}$’"
" neocomplete
let g:neocomplete#enable_at_startup = 1
let g:neocomplete#enable_smart_case = 1
" <CR>: close popup and save indent.
inoremap <silent> <CR> <C-r>=<SID>my_cr_function()<CR>
function! s:my_cr_function()
return (pumvisible() ? "\<C-y>" : "" ) . "\<CR>"
" For no inserting <CR> key.
"return pumvisible() ? "\<C-y>" : "\<CR>"
endfunction
" <TAB>: completion.
inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
" <C-h>, <BS>: close popup and delete backword char.
inoremap <expr><C-h> neocomplete#smart_close_popup()."\<C-h>"
inoremap <expr><BS> neocomplete#smart_close_popup()."\<C-h>"
" Close popup by <Space>.
"inoremap <expr><Space> pumvisible() ? "\<C-y>" : "\<Space>"
" AutoComplPop like behavior.
"let g:neocomplete#enable_auto_select = 1
" Shell like behavior(not recommended).
"set completeopt+=longest
"let g:neocomplete#enable_auto_select = 1
"let g:neocomplete#disable_auto_complete = 1
"inoremap <expr><TAB> pumvisible() ? "\<Down>" : "\<C-x>\<C-u>"
" Enable omni completion.
autocmd FileType css setlocal omnifunc=csscomplete#CompleteCSS
autocmd FileType html,markdown setlocal omnifunc=htmlcomplete#CompleteTags
autocmd FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
autocmd FileType python setlocal omnifunc=jedi#completions
let g:jedi#completions_enabled = 0
let g:jedi#auto_vim_configuration = 0
if !exists('g:neocomplete#force_omni_input_patterns')
let g:neocomplete#force_omni_input_patterns = {}
endif
let g:neocomplete#force_omni_input_patterns.python = '\%([^. \t]\.\|^\s*@\|^\s*from\s.\+import \|^\s*from \|^\s*import \)\w*'
autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
" Enable heavy omni completion.
if !exists('g:neocomplete#sources#omni#input_patterns')
let g:neocomplete#sources#omni#input_patterns = {}
endif
" Jedi-vim config
let g:jedi#use_splits_not_buffers = "right"
"let g:neocomplete#sources#omni#input_patterns.php = '[^. \t]->\h\w*\|\h\w*::'
"let g:neocomplete#sources#omni#input_patterns.c = '[^.[:digit:] *\t]\%(\.\|->\)'
"let g:neocomplete#sources#omni#input_patterns.cpp = '[^.[:digit:] *\t]\%(\.\|->\)\|\h\w*::'
" Latex TOC split
" if s:extfname ==?""tex"
" let g:LatexBox_split_type="new"
" endif
" LatexBox conf
let g:LatexBox_latexmk_preview_continuously = 1
let g:LatexBox_quickfix = 2
let g:LatexBox_autojump = 1
let g:LatexBox_Folding = 1
" Tagbar
nmap <F8> :TagbarToggle<CR>
" Folding config
set foldmethod=syntax
let g:fastfold_fold_command_suffixes = []
let g:tex_fold_enabled=1
let g:vimsyn_folding='af'
let g:xml_syntax_folding = 1
let g:php_folding = 1
let g:perl_fold = 1
set foldlevelstart=1
autocmd BufWinEnter *.tex setlocal foldexpr=LatexBox_FoldLevel(v:lnum) foldmethod=expr
autocmd BufWinEnter *.py setlocal foldexpr=SimpylFold(v:lnum) foldmethod=expr
autocmd BufWinLeave *.py setlocal foldexpr< foldmethod<
let javaScript_fold=1 " JavaScript
let perl_fold=1 " Perl
let php_folding=1 " PHP
let r_syntax_folding=1 " R
let ruby_fold=1 " Ruby
let sh_fold_enabled=1 " sh
let vimsyn_folding='af' " Vim script
let xml_syntax_folding=1 " XML
" Line numbers
setlocal relativenumber
setlocal number
"Don't unload buffers when switching
set hidden
" Indentation
set expandtab
set shiftwidth=4
set softtabstop=2
" Show word you're searching for
set hlsearch
set incsearch
" Speed up terminal editing
set lazyredraw
set ttyfast
" Use mouse in VIM
set mouse=a
" Disable bells and flashes
set visualbell t_vb= " turn off error beep/flash
set novisualbell " turn off visual bell
if has("mouse_sgr")
set ttymouse=sgr
else
set ttymouse=xterm2
end
" Show commands when typing them
set showcmd
function HasFolds()
"Attempt to move between folds, checking line numbers to see if it worked.
"If it did, there are folds.
function! HasFoldsInner()
let origline=line('.')
:norm zk
if origline==line('.')
:norm zj
if origline==line('.')
return 0
else
return 1
endif
else
return 1
endif
return 0
endfunction
let l:winview=winsaveview() "save window and cursor position
let foldsexist=HasFoldsInner()
if foldsexist
set foldcolumn=1
else
"Move to the end of the current fold and check again in case the
"cursor was on the sole fold in the file when we checked
if line('.')!=1
:norm [z
:norm k
else
:norm ]z
:norm j
endif
let foldsexist=HasFoldsInner()
if foldsexist
set foldcolumn=1
else
set foldcolumn=0
endif
end
call winrestview(l:winview) "restore window/cursor position
endfunction
au CursorHold,BufWinEnter ?* call HasFolds()
" Racer config
let g:racer_cmd = "~/.cargo/bin/racer"
let $RUST_SRC_PATH="~/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/src/"
let g:racer_experimental_completer = 1
" Auto highlight current word
autocmd CursorMoved * exe printf('match IncSearch /\V\<%s\>/', escape(expand('<cword>'), '/\'))
" Vim color file - coral_modified
set background=dark
if version > 580
hi clear
if exists("syntax_on")
syntax reset
endif
endif
set t_Co=256
let g:colors_name = "coral_modified"
"hi WildMenu -- no settings --
"hi CTagsMember -- no settings --
"hi CTagsGlobalConstant -- no settings --
"hi Ignore -- no settings --
hi Normal guifg=#ffffff guibg=#262626 guisp=#262626 gui=NONE ctermfg=15 ctermbg=235 cterm=NONE
"hi CTagsImport -- no settings --
"hi CTagsGlobalVariable -- no settings --
"hi SpellRare -- no settings --
"hi EnumerationValue -- no settings --
"hi TabLineSel -- no settings --
"hi Union -- no settings --
"hi TabLineFill -- no settings --
"hi Question -- no settings --
"hi VisualNOS -- no settings --
"hi ModeMsg -- no settings --
"hi EnumerationName -- no settings --
"hi MoreMsg -- no settings --
"hi SpellLocal -- no settings --
"hi Error -- no settings --
hi Error guifg=#d75f6f guibg=NONE guisp=NONE gui=bold ctermfg=167 ctermbg=NONE cterm=bold
"hi DefinedName -- no settings --
"hi LocalVariable -- no settings --
"hi TabLine -- no settings --
"hi clear -- no settings --
hi IncSearch guifg=#ffaf5f guibg=#262626 guisp=#262626 gui=underline ctermfg=215 ctermbg=235 cterm=underline
hi SignColumn guifg=NONE guibg=#3c3d37 guisp=#3c3d37 gui=NONE ctermfg=NONE ctermbg=237 cterm=NONE
hi SpecialComment guifg=#75715e guibg=NONE guisp=NONE gui=NONE ctermfg=101 ctermbg=NONE cterm=NONE
hi Typedef guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi Title guifg=#ffffff guibg=NONE guisp=NONE gui=bold ctermfg=15 ctermbg=NONE cterm=bold
hi Folded guifg=#75715e guibg=#272822 guisp=#272822 gui=NONE ctermfg=101 ctermbg=235 cterm=NONE
hi PreCondit guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi Include guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi Float guifg=#af87ff guibg=NONE guisp=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE
hi StatusLineNC guifg=#f8f8f2 guibg=#64645e guisp=#64645e gui=NONE ctermfg=230 ctermbg=241 cterm=NONE
hi NonText guifg=#606060 guibg=#262626 guisp=#262626 gui=NONE ctermfg=59 ctermbg=235 cterm=NONE
hi DiffText guifg=#5f87af guibg=#262626 guisp=#262626 gui=bold,underline ctermfg=67 ctermbg=235 cterm=bold,underline
hi ErrorMsg guifg=#d75f6f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi Debug guifg=#f8f8f2 guibg=NONE guisp=NONE gui=NONE ctermfg=230 ctermbg=NONE cterm=NONE
hi PMenuSbar guifg=#3a3a3a guibg=#3a3a3a guisp=#3a3a3a gui=NONE ctermfg=237 ctermbg=237 cterm=NONE
hi Identifier guifg=#5f87af guibg=NONE guisp=NONE gui=italic ctermfg=67 ctermbg=NONE cterm=NONE
hi SpecialChar guifg=#f8f8f2 guibg=NONE guisp=NONE gui=NONE ctermfg=230 ctermbg=NONE cterm=NONE
hi Conditional guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi StorageClass guifg=#5f87af guibg=NONE guisp=NONE gui=italic ctermfg=67 ctermbg=NONE cterm=NONE
hi Todo guifg=#75715e guibg=NONE guisp=NONE gui=bold ctermfg=101 ctermbg=NONE cterm=bold
hi Special guifg=#f8f8f2 guibg=NONE guisp=NONE gui=NONE ctermfg=230 ctermbg=NONE cterm=NONE
hi LineNr guifg=#949494 guibg=#3a3a3a guisp=#3a3a3a gui=NONE ctermfg=246 ctermbg=237 cterm=NONE
hi StatusLine guifg=#ffffff guibg=#949494 guisp=#949494 gui=bold ctermfg=15 ctermbg=246 cterm=bold
hi Label guifg=#e6db74 guibg=NONE guisp=NONE gui=NONE ctermfg=185 ctermbg=NONE cterm=NONE
hi PMenuSel guifg=NONE guibg=#3a3a3a guisp=#3a3a3a gui=NONE ctermfg=NONE ctermbg=237 cterm=NONE
hi Search guifg=#ffaf5f guibg=#262626 guisp=#262626 gui=underline ctermfg=215 ctermbg=235 cterm=underline
hi Delimiter guifg=#f8f8f2 guibg=NONE guisp=NONE gui=NONE ctermfg=230 ctermbg=NONE cterm=NONE
hi Statement guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi Comment guifg=#666666 guibg=NONE guisp=NONE gui=NONE ctermfg=241 ctermbg=NONE cterm=NONE
hi Character guifg=#af87ff guibg=NONE guisp=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE
hi Number guifg=#af87ff guibg=NONE guisp=NONE gui=bold ctermfg=141 ctermbg=NONE cterm=bold
hi Boolean guifg=#af87ff guibg=NONE guisp=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE
hi Operator guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi CursorLine guifg=NONE guibg=#3c3d37 guisp=#3c3d37 gui=NONE ctermfg=NONE ctermbg=237 cterm=NONE
hi WarningMsg guifg=#f8f8f0 guibg=#d75f5f guisp=#d75f5f gui=NONE ctermfg=230 ctermbg=167 cterm=NONE
hi DiffDelete guifg=#d75f6f guibg=NONE guisp=NONE gui=bold ctermfg=167 ctermbg=NONE cterm=bold
hi CursorColumn guifg=NONE guibg=#3c3d37 guisp=#3c3d37 gui=NONE ctermfg=NONE ctermbg=237 cterm=NONE
hi Define guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi Function guifg=#afd75f guibg=NONE guisp=NONE gui=NONE ctermfg=149 ctermbg=NONE cterm=NONE
hi FoldColumn guifg=#ffffff guibg=#64645e guisp=#64645e gui=NONE ctermfg=15 ctermbg=241 cterm=NONE
hi PreProc guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi Visual guifg=NONE guibg=#49483e guisp=#49483e gui=NONE ctermfg=NONE ctermbg=239 cterm=NONE
hi SpellCap guifg=NONE guibg=NONE guisp=NONE gui=underline ctermfg=NONE ctermbg=NONE cterm=underline
hi VertSplit guifg=#64645e guibg=#64645e guisp=#64645e gui=NONE ctermfg=241 ctermbg=241 cterm=NONE
hi Exception guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi Keyword guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi Type guifg=#afd75f guibg=NONE guisp=NONE gui=NONE ctermfg=149 ctermbg=NONE cterm=NONE
hi DiffChange guifg=#5f87af guibg=#262626 guisp=#262626 gui=NONE ctermfg=67 ctermbg=235 cterm=NONE
hi Cursor guifg=#272822 guibg=#f8f8f0 guisp=#f8f8f0 gui=NONE ctermfg=235 ctermbg=230 cterm=NONE
hi PMenu guifg=#ffffff guibg=#262626 guisp=#262626 gui=NONE ctermfg=15 ctermbg=235 cterm=NONE
hi SpecialKey guifg=#49483e guibg=#3c3d37 guisp=#3c3d37 gui=NONE ctermfg=239 ctermbg=237 cterm=NONE
hi Constant guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi Tag guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi String guifg=#d7d787 guibg=NONE guisp=NONE gui=NONE ctermfg=186 ctermbg=NONE cterm=NONE
hi PMenuThumb guifg=#949494 guibg=#90908a guisp=#90908a gui=NONE ctermfg=246 ctermbg=246 cterm=NONE
hi MatchParen guifg=#d75f5f guibg=NONE guisp=NONE gui=underline ctermfg=167 ctermbg=NONE cterm=underline
hi Repeat guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi SpellBad guifg=NONE guibg=NONE guisp=NONE gui=underline ctermfg=NONE ctermbg=NONE cterm=underline
hi CTagsClass guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi Directory guifg=#af87ff guibg=NONE guisp=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE
hi Structure guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi Macro guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi Underlined guifg=NONE guibg=NONE guisp=NONE gui=underline ctermfg=NONE ctermbg=NONE cterm=underline
hi DiffAdd guifg=#afd75f guibg=#262626 guisp=#262626 gui=bold ctermfg=149 ctermbg=235 cterm=bold
hi htmltag guifg=#afd75f guibg=NONE guisp=NONE gui=NONE ctermfg=149 ctermbg=NONE cterm=NONE
hi javascriptfunction guifg=#5f87af guibg=NONE guisp=NONE gui=italic ctermfg=67 ctermbg=NONE cterm=NONE
hi syntasticwarningsign guifg=#ffaf5f guibg=#3a3a3a guisp=#3a3a3a gui=NONE ctermfg=215 ctermbg=237 cterm=NONE
hi erubycomment guifg=#75715e guibg=NONE guisp=NONE gui=NONE ctermfg=101 ctermbg=NONE cterm=NONE
hi rubyrailsarmethod guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi htmlspecialchar guifg=#af87ff guibg=NONE guisp=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE
hi rubyexception guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi csscommonattr guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi rubyescape guifg=#af87ff guibg=NONE guisp=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE
hi rubyfunction guifg=#afd75f guibg=NONE guisp=NONE gui=NONE ctermfg=149 ctermbg=NONE cterm=NONE
hi rubyrailsuserclass guifg=#5f87af guibg=NONE guisp=NONE gui=italic ctermfg=67 ctermbg=NONE cterm=NONE
hi rubyblockparameter guifg=#ffaf5f guibg=NONE guisp=NONE gui=italic ctermfg=215 ctermbg=NONE cterm=NONE
hi erubyrailsmethod guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi javascriptrailsfunction guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi rubyregexpdelimiter guifg=#e6db74 guibg=NONE guisp=NONE gui=NONE ctermfg=185 ctermbg=NONE cterm=NONE
hi csscolor guifg=#af87ff guibg=NONE guisp=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE
hi rubyconstant guifg=#5f87af guibg=NONE guisp=NONE gui=italic ctermfg=67 ctermbg=NONE cterm=NONE
hi rubyrailsmethod guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi rubyrailsarassociationmethod guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi rubyrailsrendermethod guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi rubycontrol guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi csspseudoclassid guifg=#afd75f guibg=NONE guisp=NONE gui=NONE ctermfg=149 ctermbg=NONE cterm=NONE
hi colorcolumn guifg=NONE guibg=#3c3d37 guisp=#3c3d37 gui=NONE ctermfg=NONE ctermbg=237 cterm=NONE
hi cssvaluelength guifg=#af87ff guibg=NONE guisp=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE
hi rubyclass guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi rubystringdelimiter guifg=#e6db74 guibg=NONE guisp=NONE gui=NONE ctermfg=185 ctermbg=NONE cterm=NONE
hi yamldocumentheader guifg=#e6db74 guibg=NONE guisp=NONE gui=NONE ctermfg=185 ctermbg=NONE cterm=NONE
hi syntasticerrorsign guifg=#d75f5f guibg=#3a3a3a guisp=#3a3a3a gui=NONE ctermfg=167 ctermbg=237 cterm=NONE
hi rubyregexp guifg=#e6db74 guibg=NONE guisp=NONE gui=NONE ctermfg=185 ctermbg=NONE cterm=NONE
hi rubysymbol guifg=#af87ff guibg=NONE guisp=NONE gui=NONE ctermfg=141 ctermbg=NONE cterm=NONE
hi cssurl guifg=#ffaf5f guibg=NONE guisp=NONE gui=italic ctermfg=215 ctermbg=NONE cterm=NONE
hi cssfunctionname guifg=#5f87af guibg=NONE guisp=NONE gui=NONE ctermfg=67 ctermbg=NONE cterm=NONE
hi rubyinclude guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi cssclassname guifg=#afd75f guibg=NONE guisp=NONE gui=NONE ctermfg=149 ctermbg=NONE cterm=NONE
hi yamlkey guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi rubyoperator guifg=#d75f5f guibg=NONE guisp=NONE gui=NONE ctermfg=167 ctermbg=NONE cterm=NONE
hi htmlendtag guifg=#afd75f guibg=NONE guisp=NONE gui=NONE ctermfg=149 ctermbg=NONE cterm=NONE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment