summaryrefslogtreecommitdiff
path: root/lua/bee
diff options
context:
space:
mode:
Diffstat (limited to 'lua/bee')
-rw-r--r--lua/bee/LSPs/init.lua22
-rw-r--r--lua/bee/init.lua7
2 files changed, 28 insertions, 1 deletions
diff --git a/lua/bee/LSPs/init.lua b/lua/bee/LSPs/init.lua
index 69f34cf..d5abf9b 100644
--- a/lua/bee/LSPs/init.lua
+++ b/lua/bee/LSPs/init.lua
@@ -25,6 +25,28 @@ return {
end,
},
{
+ "lazydev.nvim",
+ auto_enable = true,
+ cmd = { "LazyDev" },
+ ft = "lua",
+ after = function(_)
+ require("lazydev").setup({
+ library = {
+ {
+ words = { "uv", "vim%.uv", "vim%.loop" },
+ path = nixInfo("luvit-meta", "plugins", "start", "luvit-meta") .. "/library",
+ },
+ { words = { "nixInfo" }, path = nixInfo("", "info_plugin_path") .. "/lua" },
+ { words = { "nixInfo%.lze" }, path = nixInfo("lze", "plugins", "start", "lze") .. "/lua" },
+ {
+ words = { "nixInfo%.lze" },
+ path = nixInfo("lzextras", "plugins", "start", "lzextras") .. "/lua",
+ },
+ },
+ })
+ end,
+ },
+ {
"rustaceanvim",
auto_enable = true,
lazy = false, -- lazy loaded by default
diff --git a/lua/bee/init.lua b/lua/bee/init.lua
index 265a0e3..ca4ba08 100644
--- a/lua/bee/init.lua
+++ b/lua/bee/init.lua
@@ -40,6 +40,11 @@ nixInfo.lze.load({
end,
},
{
+ "tokyonight.nvim",
+ auto_enable = true,
+ colorscheme = "tokyonight",
+ },
+ {
"nvim-surround",
auto_enable = true,
event = "DeferredUIEnter",
@@ -87,4 +92,4 @@ nixInfo.lze.load({
},
})
-vim.cmd.colorscheme("base46-tokyonight")
+vim.cmd.colorscheme("tokyonight")