chore(nvim): other stuff

This commit is contained in:
Afonso Franco 2025-06-16 09:22:33 +01:00
parent 48459eb333
commit 13ae0c0e78
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
4 changed files with 85 additions and 25 deletions

View file

@ -47,9 +47,27 @@ return {
end
},
"tpope/vim-fugitive",
{
'codethread/qmk.nvim',
config = function()
---@type qmk.UserConfig
local conf = {
name = 'LAYOUT_lily58_pro',
variant = 'zmk',
layout = {
'x x x x x x _ _ _ _ x x x x x x',
'x x x x x x _ _ _ _ x x x x x x',
'x x x x x x _ _ _ _ x x x x x x',
'x x x x x x x _ _ x x x x x x x',
'_ _ _ x x x x _ _ x x x x _ _ _',
}
}
require('qmk').setup(conf)
end
},
{
"afonsofrancof/worktrees.nvim",
dev = true,
dev = false,
event = "VeryLazy",
opts = {
mappings = {
@ -58,5 +76,29 @@ return {
switch = "<leader>wts",
}
}
},
{
"afonsofrancof/osc11.nvim",
dev = false,
dependencies = {
"navarasu/onedark.nvim",
},
opts = {
on_dark = function()
vim.g.gruvbox_material_better_performance = 1
vim.g.gruvbox_material_background = "hard"
vim.g.gruvbox_material_foreground = "original"
vim.g.gruvbox_material_transparent_background = 2
vim.opt.background = "dark"
vim.cmd('colorscheme gruvbox-material')
end,
on_light = function()
require('onedark').setup {
style = 'light'
}
-- Enable theme
require('onedark').load()
end,
}
}
}