chore(nvim): other stuff
This commit is contained in:
parent
48459eb333
commit
13ae0c0e78
4 changed files with 85 additions and 25 deletions
|
@ -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,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue