going to try out guicolors in vim for a bit

This commit is contained in:
Wryn (yage) Wagner 2022-08-17 00:46:55 -06:00
parent 60c2f493d9
commit 31d3c6c692
6 changed files with 31 additions and 39 deletions

View File

@ -3,8 +3,8 @@ background #000505
selection_foreground #441580 selection_foreground #441580
selection_background #01B282 selection_background #01B282
cursor #e0d0ff cursor #e0d0ff
color0 #00000e color0 #212132
color8 #32323e color8 #424253
color1 #c80064 color1 #c80064
color9 #640032 color9 #640032
color2 #00c864 color2 #00c864

View File

@ -2,8 +2,6 @@
let $DOTWRYN=expand("$HOME/.wryn") let $DOTWRYN=expand("$HOME/.wryn")
let $WRYNVIMPATH=expand("$DOTWRYN/vim") let $WRYNVIMPATH=expand("$DOTWRYN/vim")
let $WRYNVIMRC=expand("$WRYNVIMPATH/rc.vim") let $WRYNVIMRC=expand("$WRYNVIMPATH/rc.vim")
let $BASHRC=expand("$HOME/.bashrc")
let $ZSHRC=expand("$HOME/.zshrc")
" }}} " }}}
" -- Leader bindings -------------------------------------------- {{{ " -- Leader bindings -------------------------------------------- {{{
@ -12,16 +10,3 @@ let mapleader = "\\"
nmap <BS> <Nop> nmap <BS> <Nop>
let maplocalleader = "\<BS>" 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=""
" }}}

View File

@ -2,12 +2,13 @@
# Scwrypts Build Definitions # Scwrypts Build Definitions
# #
VUNDLE_BUILD__ale() {} VUNDLE_BUILD__ale() {}
VUNDLE_BUILD__nerdtree() {} VUNDLE_BUILD__nerdtree() {}
VUNDLE_BUILD__vim-dim() {}
VUNDLE_BUILD__vim-fugitive() {} VUNDLE_BUILD__vim-fugitive() {}
VUNDLE_BUILD__vim-go() {} VUNDLE_BUILD__vim-go() {}
VUNDLE_BUILD__vim-surround() {} VUNDLE_BUILD__vim-surround() {}
VUNDLE_BUILD__vim-hexokinase() { make hexokinase; } VUNDLE_BUILD__vim-hexokinase() { make hexokinase; }
VUNDLE_BUILD__youcompleteme() { ./install.py --all; } VUNDLE_BUILD__youcompleteme() { ./install.py --all; }

View File

@ -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 set t_Co=256
colorscheme dim
highlight Normal guibg=NONE ctermbg=NONE highlight Normal guibg=NONE ctermbg=NONE
highlight SpellBad ctermbg=NONE ctermfg=red highlight SpellBad guibg=NONE guifg=red ctermbg=NONE ctermfg=red
highlight LineNr ctermfg=yellow highlight LineNr guibg=NONE guifg=purple ctermbg=NONE ctermfg=yellow
highlight SignColumn guibg=NONE ctermbg=NONE highlight SignColumn guibg=NONE ctermbg=NONE

View File

@ -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>eb :! scwrypts -n latex/build-pdf -- %:p<CR>
autocmd FileType tex nnoremap <Leader>ef :! scwrypts -n latex/cleanup -- %: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 <Leader>ec :!clear<CR><CR>q:?GoRun<CR><CR>
autocmd FileType go nnoremap <silent> <Leader>ef <Plug>(go-imports) autocmd FileType go nnoremap <silent> <Leader>ef <Plug>(go-imports)

View File

@ -7,15 +7,14 @@ call vundle#begin()
Plugin 'VundleVim/Vundle.vim' Plugin 'VundleVim/Vundle.vim'
" --- installed plugins ----------------------------------------------- " --- installed plugins -----------------------------------------------
" {{{ " {{{
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/nerdtree'
Plugin 'fatih/vim-go' 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 '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() call vundle#end()
@ -24,9 +23,20 @@ filetype plugin indent on
" --- plugin configuration -------------------------------------------- " --- 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 " scrooloose/nerdtree
nnoremap <C-o> :NERDTreeToggle %<CR> 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 " Valloric/YouCompleteMe
@ -61,13 +71,5 @@ let g:ale_sign_column_always = 1
nmap <Leader>ae <Plug>(ale_next) nmap <Leader>ae <Plug>(ale_next)
nmap <Leader>ar <Plug>(ale_previous) 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
" }}} " }}}
" --------------------------------------------------------------------- " ---------------------------------------------------------------------