Adjust colors in pina neovim theme

This commit is contained in:
2025-10-30 21:59:00 -05:00
parent 529eef185c
commit 392b24e18b
3 changed files with 10 additions and 8 deletions

View File

@@ -24,7 +24,7 @@ alias ls='ls -F'
alias cal='khal calendar'
alias pdt='ping -c 2 drinkingtea.net'
alias ppw='ping -c 2 pinewoods.xyz'
alias weather='curl wttr.in'
alias weather='curl "wttr.in/dfw?2&F"'
alias shrug='echo "¯\\_(ツ)_/¯"'
alias journal="cd $DIR_HOME_BOX; $EDITOR .current-journal"
alias ncspotkeys="$EDITOR $DIR_GIT_PROJECTS/other/ncspot/doc/users.md"

View File

@@ -4,7 +4,8 @@
" Upstream: https://github.com/bjarneo/omarchy-pina-theme/blob/main/pina.nvim/colors/pina.vim
" This file has been modified slightly by removing some of the "hi" commands
" related to neovim plugins which I do not use.
" related to neovim plugins which I do not use, and by adding/changing a few
" colors as well.
" NOTE: The name, maintainer, and license lines from the original are copied
" below in their original state. However, I suspect these were inaccurate names
@@ -27,9 +28,10 @@ endif
let g:colors_name = "pina"
" Color definitions
let background = "#171a18"
let foreground = "#d4d5d5"
let cursor = "#d4d5d5"
let background = "#171a18"
let foreground = "#d4d5d5"
let cursor = "#d4d5d5"
let cursor_lines = "#2c2f2d"
" Colors
let color0 = "#171a18"
@@ -79,8 +81,9 @@ endif
" Basic highlight groups
exe "hi Normal guifg=" . foreground . " guibg=" . background . " ctermfg=7 ctermbg=0"
exe "hi Cursor guifg=" . background . " guibg=" . cursor . " ctermfg=0 ctermbg=7"
exe "hi CursorLine guibg=" . color8 . " ctermbg=8"
exe "hi CursorColumn guibg=" . color8 . " ctermbg=8"
exe "hi CursorLine guibg=" . cursor_lines . " ctermbg=8"
exe "hi CursorColumn guibg=" . cursor_lines . " ctermbg=8"
exe "hi ColorColumn guibg=" . cursor_lines . " ctermbg=8"
exe "hi LineNr guifg=" . color8 . " ctermfg=8"
exe "hi CursorLineNr guifg=" . color7 . " ctermfg=7"

View File

@@ -16,5 +16,4 @@
- alternate idea: columns for "include_in_systems" and/or "excluded_from_systems"
- if both, likely apply the include column first, then the exclude (priority)
- add command in tmux to perform cd to a given dir in all windows of the current session
- in pina theme, cursor (cursorline) and comments (rendered in neovim) are same color, fix