Update home/.config/lvim/lua/user/autocommands.lua
Update home/.config/lvim/lua/user/plugins.lua
This commit is contained in:
parent
4d6404f2dc
commit
4813dd044f
home/dot_config/lvim/lua/user
@ -13,35 +13,49 @@ Last Modified By : Jeff Lance <email@jefflance.me>
|
|||||||
-- Some examples of autocommands definition through lvim api.
|
-- Some examples of autocommands definition through lvim api.
|
||||||
--
|
--
|
||||||
|
|
||||||
-- local M = {}
|
local M = {}
|
||||||
|
|
||||||
-- M.setup = function()
|
M.setup = function()
|
||||||
-- lvim.autocommands = {
|
lvim.autocommands = {
|
||||||
-- -- for any files
|
-- -- for any files
|
||||||
-- {
|
-- {
|
||||||
-- { "VimEnter" },
|
-- { "VimEnter" },
|
||||||
-- {
|
-- {
|
||||||
-- pattern = { "*" },
|
-- pattern = { "*" },
|
||||||
-- command = "FloatermNew --width=0.8 --name=terminal --cwd=<buffer>",
|
-- command = "FloatermNew --width=0.8 --name=terminal --cwd=<buffer>",
|
||||||
-- }
|
-- }
|
||||||
-- },
|
-- },
|
||||||
-- -- arduino files
|
-- -- arduino files
|
||||||
-- {
|
-- {
|
||||||
-- { "BufNewFile", "BufRead" },
|
-- { "BufNewFile", "BufRead" },
|
||||||
-- {
|
-- {
|
||||||
-- pattern = { "*.ino", ".pde" },
|
-- pattern = { "*.ino", ".pde" },
|
||||||
-- command = "set filetype=arduino",
|
-- command = "set filetype=arduino",
|
||||||
-- }
|
-- }
|
||||||
-- },
|
-- },
|
||||||
-- -- asymptote filetype
|
-- -- asymptote filetype
|
||||||
-- {
|
-- {
|
||||||
-- { "BufNewFile", "BufRead" },
|
-- { "BufNewFile", "BufRead" },
|
||||||
-- {
|
-- {
|
||||||
-- pattern = { "*.asy" },
|
-- pattern = { "*.asy" },
|
||||||
-- command = "set filetype=asy",
|
-- command = "set filetype=asy",
|
||||||
-- }
|
-- }
|
||||||
-- },
|
-- },
|
||||||
-- }
|
-- Hyprlang LSP
|
||||||
-- end
|
{
|
||||||
|
{'BufEnter', 'BufWinEnter'},
|
||||||
-- return M
|
{
|
||||||
|
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
|
||||||
|
@ -42,44 +42,42 @@ M.setup = function()
|
|||||||
-- chatgpt
|
-- chatgpt
|
||||||
{
|
{
|
||||||
"jackMort/ChatGPT.nvim",
|
"jackMort/ChatGPT.nvim",
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
config = function()
|
config = function()
|
||||||
require("chatgpt").setup({
|
require("chatgpt").setup({
|
||||||
api_key_cmd = "pass _api_keys/openai_perso-1"
|
api_key_cmd = "pass _api_keys/openai_perso-1"
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"MunifTanjim/nui.nvim",
|
"MunifTanjim/nui.nvim",
|
||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
"nvim-telescope/telescope.nvim"
|
"nvim-telescope/telescope.nvim"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'xvzc/chezmoi.nvim',
|
||||||
|
config = function()
|
||||||
|
require("chezmoi").setup {
|
||||||
|
-- your configurations
|
||||||
|
-- default values
|
||||||
|
{
|
||||||
|
edit = {
|
||||||
|
watch = false,
|
||||||
|
force = false,
|
||||||
|
},
|
||||||
|
notification = {
|
||||||
|
on_open = true,
|
||||||
|
on_apply = true,
|
||||||
|
on_watch = false,
|
||||||
|
},
|
||||||
|
telescope = {
|
||||||
|
select = { "<CR>" },
|
||||||
|
},
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
{
|
end,
|
||||||
{
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||||
'xvzc/chezmoi.nvim',
|
},
|
||||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
|
||||||
config = function()
|
|
||||||
require("chezmoi").setup {
|
|
||||||
-- your configurations
|
|
||||||
-- default values
|
|
||||||
{
|
|
||||||
edit = {
|
|
||||||
watch = false,
|
|
||||||
force = false,
|
|
||||||
},
|
|
||||||
notification = {
|
|
||||||
on_open = true,
|
|
||||||
on_apply = true,
|
|
||||||
on_watch = false,
|
|
||||||
},
|
|
||||||
telescope = {
|
|
||||||
select = { "<CR>" },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
end
|
|
||||||
},
|
|
||||||
},
|
|
||||||
-- cmp addons
|
-- cmp addons
|
||||||
{
|
{
|
||||||
"tzachar/cmp-tabnine",
|
"tzachar/cmp-tabnine",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user