going to try out guicolors in vim for a bit
This commit is contained in:
parent
60c2f493d9
commit
31d3c6c692
@ -3,8 +3,8 @@ background #000505
|
||||
selection_foreground #441580
|
||||
selection_background #01B282
|
||||
cursor #e0d0ff
|
||||
color0 #00000e
|
||||
color8 #32323e
|
||||
color0 #212132
|
||||
color8 #424253
|
||||
color1 #c80064
|
||||
color9 #640032
|
||||
color2 #00c864
|
||||
|
@ -2,8 +2,6 @@
|
||||
let $DOTWRYN=expand("$HOME/.wryn")
|
||||
let $WRYNVIMPATH=expand("$DOTWRYN/vim")
|
||||
let $WRYNVIMRC=expand("$WRYNVIMPATH/rc.vim")
|
||||
let $BASHRC=expand("$HOME/.bashrc")
|
||||
let $ZSHRC=expand("$HOME/.zshrc")
|
||||
" }}}
|
||||
|
||||
" -- Leader bindings -------------------------------------------- {{{
|
||||
@ -12,16 +10,3 @@ let mapleader = "\\"
|
||||
nmap <BS> <Nop>
|
||||
let maplocalleader = "\<BS>"
|
||||
" }}}
|
||||
|
||||
" -- Colorscheme Settings --------------------------------------- {{{
|
||||
" favorites : tigrana-256-dark, codedark, lilydjwg_dark, up, skittles_autumn,
|
||||
" ........... vice, lanox, nightsky, made_of_code, moss, skittles_berry, pf_earth
|
||||
"
|
||||
" customs : snow
|
||||
let $COLORSCHEME="default"
|
||||
" }}}
|
||||
|
||||
" -- Web Browser Settings --------------------------------------- {{{
|
||||
" set the webbrowser locally
|
||||
"let $WEBBROWSER=""
|
||||
" }}}
|
||||
|
@ -2,12 +2,13 @@
|
||||
# Scwrypts Build Definitions
|
||||
#
|
||||
|
||||
|
||||
VUNDLE_BUILD__ale() {}
|
||||
VUNDLE_BUILD__nerdtree() {}
|
||||
VUNDLE_BUILD__vim-dim() {}
|
||||
VUNDLE_BUILD__vim-fugitive() {}
|
||||
VUNDLE_BUILD__vim-go() {}
|
||||
VUNDLE_BUILD__vim-surround() {}
|
||||
|
||||
VUNDLE_BUILD__vim-hexokinase() { make hexokinase; }
|
||||
|
||||
VUNDLE_BUILD__youcompleteme() { ./install.py --all; }
|
||||
|
@ -1,8 +1,12 @@
|
||||
silent! colorscheme $COLORSCHEME
|
||||
set termguicolors
|
||||
|
||||
let &t_8f="\<Esc>[38;2;%lu;%lu;%lum"
|
||||
let &t_8b="\<Esc>[48;2;%lu;%lu;%lum"
|
||||
set t_Co=256
|
||||
|
||||
colorscheme dim
|
||||
|
||||
highlight Normal guibg=NONE ctermbg=NONE
|
||||
highlight SpellBad ctermbg=NONE ctermfg=red
|
||||
highlight LineNr ctermfg=yellow
|
||||
highlight SpellBad guibg=NONE guifg=red ctermbg=NONE ctermfg=red
|
||||
highlight LineNr guibg=NONE guifg=purple ctermbg=NONE ctermfg=yellow
|
||||
highlight SignColumn guibg=NONE ctermbg=NONE
|
||||
|
@ -74,7 +74,7 @@ augroup file_specific_command_overrides
|
||||
autocmd FileType tex nnoremap <Leader>eb :! scwrypts -n latex/build-pdf -- %:p<CR>
|
||||
autocmd FileType tex nnoremap <Leader>ef :! scwrypts -n latex/cleanup -- %:p<CR>
|
||||
|
||||
autocmd FileType markdown nnoremap <Leader>ec :! $WEBBROWSER %:p<CR>
|
||||
autocmd FileType markdown nnoremap <Leader>ec :!xdg-open %:p<CR>
|
||||
|
||||
autocmd FileType go nnoremap <Leader>ec :!clear<CR><CR>q:?GoRun<CR><CR>
|
||||
autocmd FileType go nnoremap <silent> <Leader>ef <Plug>(go-imports)
|
||||
|
@ -7,15 +7,14 @@ call vundle#begin()
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
" --- installed plugins -----------------------------------------------
|
||||
" {{{
|
||||
Plugin 'tpope/vim-surround'
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
Plugin 'scrooloose/nerdtree'
|
||||
Plugin 'fatih/vim-go'
|
||||
Plugin 'jeffkreeftmeijer/vim-dim'
|
||||
Plugin 'rrethy/vim-hexokinase'
|
||||
Plugin 'scrooloose/nerdtree'
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
Plugin 'tpope/vim-surround'
|
||||
Plugin 'valloric/youcompleteme'
|
||||
Plugin 'w0rp/ale'
|
||||
|
||||
Plugin 'valloric/youcompleteme', {'oninstall': 'python3 install.py --all', 'onupdate': 'python3 install.py --all'}
|
||||
|
||||
Plugin 'rrethy/vim-hexokinase', {'oninstall': 'make hexokinase', 'onupdate': 'make hexokinase'}
|
||||
" }}}
|
||||
" ---------------------------------------------------------------------
|
||||
call vundle#end()
|
||||
@ -24,9 +23,20 @@ filetype plugin indent on
|
||||
" --- plugin configuration --------------------------------------------
|
||||
" {{{
|
||||
|
||||
" fatih/vim-go
|
||||
let g:go_imports_autosave = 0
|
||||
let g:go_def_mapping_enabled = 0
|
||||
let g:go_fmt_fail_silently = 1
|
||||
let g:go_def_reuse_buffer = 1
|
||||
let g:go_textobj_enabled = 0
|
||||
|
||||
|
||||
" rrethy/vim-hexokinase
|
||||
let g:Hexokinase_highlighters = ['foregroundfull']
|
||||
|
||||
" scrooloose/nerdtree
|
||||
nnoremap <C-o> :NERDTreeToggle %<CR>
|
||||
let g:NERDTreeNodeDelimiter = "\u00a0" " -- Was seeing ^G character, and this should fix that
|
||||
let g:NERDTreeNodeDelimiter = "\u00a0" " -- fixes ^G character
|
||||
|
||||
|
||||
" Valloric/YouCompleteMe
|
||||
@ -61,13 +71,5 @@ let g:ale_sign_column_always = 1
|
||||
nmap <Leader>ae <Plug>(ale_next)
|
||||
nmap <Leader>ar <Plug>(ale_previous)
|
||||
|
||||
|
||||
" fatih/vim-go
|
||||
let g:go_imports_autosave = 0
|
||||
let g:go_def_mapping_enabled = 0
|
||||
let g:go_fmt_fail_silently = 1
|
||||
let g:go_def_reuse_buffer = 1
|
||||
let g:go_textobj_enabled = 0
|
||||
|
||||
" }}}
|
||||
" ---------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user