From 9988bd13b2b0f66ed98b80f1f85db0b338a46488 Mon Sep 17 00:00:00 2001 From: Christian Nieves Date: Wed, 29 Jan 2025 21:55:07 -0600 Subject: [PATCH] things --- vim/.vim/lua/plugins/neotree.lua | 2 +- vim/.vim/lua/plugins/signify.lua | 19 +++++++++---------- vim/.vim/lua/plugins/themes-personal.lua | 15 ++++++++++++++- 3 files changed, 24 insertions(+), 12 deletions(-) diff --git a/vim/.vim/lua/plugins/neotree.lua b/vim/.vim/lua/plugins/neotree.lua index e760116..efcab4a 100644 --- a/vim/.vim/lua/plugins/neotree.lua +++ b/vim/.vim/lua/plugins/neotree.lua @@ -48,7 +48,7 @@ return { return { "m", ":Neotree float git_status", desc = "Open NeoTree CWD float" } end)(), { "", ":Neotree toggle left dir=%:p:h" }, - { "e", ":Neotree float dir=%:p:h" }, + { "e", ":Neotree float dir=%:p:h/" }, }, }, } diff --git a/vim/.vim/lua/plugins/signify.lua b/vim/.vim/lua/plugins/signify.lua index d18d179..30fdec8 100644 --- a/vim/.vim/lua/plugins/signify.lua +++ b/vim/.vim/lua/plugins/signify.lua @@ -65,19 +65,18 @@ return { }, config = function() vim.g.signify_vcs_list = { "hg", "git" } - local one_eighth = "▏" - local one_quarter = "▎" - local three_eighths = "▍" vim.g.signify_disable_by_default = 0 - vim.g.signify_sign_add = one_quarter - vim.g.signify_sign_delete = one_quarter - vim.g.signify_sign_change = one_quarter - local red = "#f8a6a0" - vim.api.nvim_set_hl(0, "SignifySignAdd", { fg = "#9cc9b8" }) - vim.api.nvim_set_hl(0, "SignifySignChange", { fg = "#84cee3" }) + -- vim.g.signify_number_highlight = 1 + local s = "▕" + vim.g.signify_sign_add = s + vim.g.signify_sign_delete = s + vim.g.signify_sign_change = s + vim.api.nvim_set_hl(0, "SignifySignAdd", { fg = "#9cd9b8" }) + vim.api.nvim_set_hl(0, "SignifySignChange", { fg = "#849ee3" }) + + local red = "#f896a0" vim.api.nvim_set_hl(0, "SignifySignChangeDelete", { fg = red }) vim.api.nvim_set_hl(0, "SignifySignDelete", { fg = red }) vim.api.nvim_set_hl(0, "SignifySignDeleteDeleteFirstLine", { fg = red }) - -- vim.cmd("highlight SignColumn ctermbg=NONE cterm=NONE guibg=NONE gui=NONE") end, } diff --git a/vim/.vim/lua/plugins/themes-personal.lua b/vim/.vim/lua/plugins/themes-personal.lua index df7f666..3ab17b7 100644 --- a/vim/.vim/lua/plugins/themes-personal.lua +++ b/vim/.vim/lua/plugins/themes-personal.lua @@ -1,10 +1,23 @@ local use_google = require("utils").use_google return { + { + "dgox16/oldworld.nvim", + lazy = false, + cond = not use_google(), + priority = 1000, + opts = { + variant = "cooler", + }, + config = function() + vim.cmd("colorscheme oldworld") + end, + }, { "bluz71/vim-moonfly-colors", name = "moonfly", - cond = not use_google(), + -- cond = not use_google(), + cond = false, lazy = false, priority = 1000, config = function()