more tweaking, idiot

This commit is contained in:
2024-11-05 14:26:14 -05:00
parent df1d890b3c
commit 8843f5d24c
2 changed files with 17 additions and 11 deletions

17
bashrc
View File

@@ -72,14 +72,6 @@ stty -ixon # disable ^S/^Q flow control
#
# colors
#
if [[ "$OSTYPE" == "darwin"* ]] || [[ "$OSTYPE" == "sun"* ]] ; then
# BSD/macOS
export LS_COLORS='ExGxbEaECxxEhEhBaDaCaD'
else
# Linux
export LS_COLORS='di=36:ln=35:su=31;47:sg=35;47'
fi
export GREP_COLOR='mt=1;36'
export LESS="-R" # less colored output
export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking
@@ -89,6 +81,15 @@ export LESS_TERMCAP_se=$'\E[0m' # end standout-mode
export LESS_TERMCAP_so=$'\E[38;5;246m' # begin standout-mode - info box
export LESS_TERMCAP_ue=$'\E[0m' # end underline
export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline
# dir colors (https://geoff.greer.fm/lscolors/)
if [[ "$OSTYPE" == "darwin"* ]] || [[ "$OSTYPE" == "sun"* ]] ; then
# BSD/macOS
export LS_COLORS='ExGxbEaECxxEhEhBaDaCaD'
else
# Linux
export LS_COLORS='di=36:ln=35:su=31;47:sg=35;47'
fi
#

7
vimrc
View File

@@ -25,7 +25,7 @@ nmap gd :ALEGoToDefinition<CR>
nmap gr :ALEFindReferences<CR>
let g:ale_sign_column_always=1
let g:ale_change_sign_column_color=1
:highlight SignColumn ctermbg=238
dfd:highlight SignColumn ctermbg=238
set laststatus=2
set paste
"colorscheme google
@@ -34,3 +34,8 @@ set paste
"colorscheme madeofcode
"colorscheme h80
colorscheme badwolf
" Remember cursor position
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | execute "normal! g`\"" | endif
endif