1
0

Update home/.config/lvim/lua/user/autocommands.lua

Update home/.config/lvim/lua/user/plugins.lua
This commit is contained in:
Jeff Lance 2025-03-15 19:58:33 +01:00
parent 4d6404f2dc
commit 4813dd044f
2 changed files with 80 additions and 68 deletions
home/dot_config/lvim/lua/user

@ -13,10 +13,10 @@ Last Modified By : Jeff Lance <email@jefflance.me>
-- Some examples of autocommands definition through lvim api.
--
-- local M = {}
local M = {}
-- M.setup = function()
-- lvim.autocommands = {
M.setup = function()
lvim.autocommands = {
-- -- for any files
-- {
-- { "VimEnter" },
@ -41,7 +41,21 @@ Last Modified By : Jeff Lance <email@jefflance.me>
-- command = "set filetype=asy",
-- }
-- },
-- }
-- end
-- return M
-- Hyprlang LSP
{
{'BufEnter', 'BufWinEnter'},
{
pattern = {"*.hl", "hypr*.conf"},
callback = function(event)
print(string.format("starting hyprls for %s", vim.inspect(event)))
vim.lsp.start {
name = "hyprlang",
cmd = { "hyprls" },
root_dir = vim.fn.getcwd(),
}
end
}
},
}
end
return M

@ -54,10 +54,8 @@ M.setup = function()
"nvim-telescope/telescope.nvim"
}
},
{
{
'xvzc/chezmoi.nvim',
dependencies = { 'nvim-lua/plenary.nvim' },
config = function()
require("chezmoi").setup {
-- your configurations
@ -77,8 +75,8 @@ M.setup = function()
},
}
}
end
},
end,
dependencies = { 'nvim-lua/plenary.nvim' },
},
-- cmp addons
{