aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-01-11 22:15:51 +0100
committerpml68 <contact@pml68.dev>2025-01-11 22:19:06 +0100
commit17ca5ecbee6e0cd9b448c2974602050c666172c5 (patch)
treefb45695bd91428a8d6021817aac9632f2f5280e5
parentfeat: add error and warning diagnostic counts to statusline (diff)
downloadnvim-17ca5ecbee6e0cd9b448c2974602050c666172c5.tar.gz
feat: switch to rosepine-tmuxed for distorted colors
Diffstat (limited to '')
-rw-r--r--.bashrc1
-rw-r--r--lua/pml68/plugins/colors.lua4
-rw-r--r--lua/pml68/settings.lua2
3 files changed, 3 insertions, 4 deletions
diff --git a/.bashrc b/.bashrc
index aff0ae6..3f6cfb5 100644
--- a/.bashrc
+++ b/.bashrc
@@ -9,7 +9,6 @@ export PATH=$PATH:/root/.cargo/bin:/root/go/bin
export EDITOR=nvim
export HISTSIZE=1000
export HISTFILESIZE=2000
-export TERM=xterm-256color
YELLOW="\[$(tput setaf 3)\]"
GREEN="\[$(tput setaf 2)\]"
diff --git a/lua/pml68/plugins/colors.lua b/lua/pml68/plugins/colors.lua
index 6a8eb36..17a1ca1 100644
--- a/lua/pml68/plugins/colors.lua
+++ b/lua/pml68/plugins/colors.lua
@@ -10,7 +10,7 @@ return {
},
},
{
- "rose-pine/neovim",
+ "pml68/rosepine-tmuxed",
name = "rose-pine",
priority = 1000,
lazy = false,
@@ -21,7 +21,7 @@ return {
italic = false,
},
highlight_groups = {
- StatusLine = { fg = "iris", bg = "iris", blend = 10 },
+ StatusLine = { fg = "iris", bg = "iris", blend = 25 },
StatusLineNC = { fg = "subtle", bg = "surface" },
},
})
diff --git a/lua/pml68/settings.lua b/lua/pml68/settings.lua
index 3484993..d56134b 100644
--- a/lua/pml68/settings.lua
+++ b/lua/pml68/settings.lua
@@ -17,7 +17,7 @@ end
local function diagnostics()
local warns = vim.diagnostic.get(nil, { severity = vim.diagnostic.severity.WARN })
local errors = vim.diagnostic.get(nil, { severity = vim.diagnostic.severity.ERROR })
- return string.format("[ %d| %d]", #warns, #errors)
+ return string.format(" %d |  %d", #warns, #errors)
end
local function get_attached_clients()