From 392b24e18b62d83ff9541bfb51be21dc216f3d0d Mon Sep 17 00:00:00 2001 From: david Date: Thu, 30 Oct 2025 21:59:00 -0500 Subject: [PATCH] Adjust colors in pina neovim theme --- src_files/.config/zsh/.zshrc | 2 +- .../pina/pina.nvim/colors/pina.vim | 15 +++++++++------ todo.md | 1 - 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src_files/.config/zsh/.zshrc b/src_files/.config/zsh/.zshrc index 0ea0647..ec75381 100644 --- a/src_files/.config/zsh/.zshrc +++ b/src_files/.config/zsh/.zshrc @@ -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" diff --git a/src_files/imports/themes-omarchy-extra/pina/pina.nvim/colors/pina.vim b/src_files/imports/themes-omarchy-extra/pina/pina.nvim/colors/pina.vim index c5d0bfe..c916efc 100644 --- a/src_files/imports/themes-omarchy-extra/pina/pina.nvim/colors/pina.vim +++ b/src_files/imports/themes-omarchy-extra/pina/pina.nvim/colors/pina.vim @@ -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" diff --git a/todo.md b/todo.md index 81aa1d2..774c05c 100644 --- a/todo.md +++ b/todo.md @@ -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