091012024-1

- fixed nvim colors
This commit is contained in:
foozzi 2024-01-09 15:31:07 -05:00
parent f549b63062
commit 3490f1c273
3 changed files with 21 additions and 5 deletions

View file

@ -11,7 +11,7 @@ unfocused_hollow = true
shape = "Block" shape = "Block"
[env] [env]
TERM = "tmux-256color" TERM = "xterm-256color"
[font] [font]
size = 10.0 size = 10.0

View file

@ -1,5 +1,20 @@
local config = function() local config = function()
require("bufferline").setup() local bufferline = require("bufferline")
bufferline.setup({
options = {
-- style_preset = bufferline.style_preset.no_italic,
-- or you can combine these e.g.
style_preset = {
bufferline.style_preset.no_italic,
bufferline.style_preset.no_bold,
},
hover = {
enabled = true,
delay = 200,
reveal = { "close" },
},
},
})
end end
return { return {
@ -8,5 +23,5 @@ return {
dependencies = { dependencies = {
"nvim-tree/nvim-web-devicons", "nvim-tree/nvim-web-devicons",
}, },
lazy = false, event = "VeryLazy",
} }

View file

@ -9,8 +9,9 @@ set -g mode-keys vi
bind-key -T copy-mode-vi v send-keys -X begin-selection bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi y send-keys -X copy-pipe "pbcopy" bind-key -T copy-mode-vi y send-keys -X copy-pipe "pbcopy"
set -g default-terminal "tmux-256color" set -g default-terminal tmux-256color
set-option -sa terminal-features ',alacritty:RGB' set -sa terminal-features ',alacritty:RGB'
set -ga terminal-overrides ",*256col*:Tc"
# reset gpg-agent password cache after close the pane (vimwiki diary) # reset gpg-agent password cache after close the pane (vimwiki diary)
set-hook -g window-unlinked 'run-shell "gpgconf --reload gpg-agent"' set-hook -g window-unlinked 'run-shell "gpgconf --reload gpg-agent"'