aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/pml68/init.lua2
-rw-r--r--lua/pml68/plugins.lua12
2 files changed, 12 insertions, 2 deletions
diff --git a/lua/pml68/init.lua b/lua/pml68/init.lua
index 3c162c6..c40c6c5 100644
--- a/lua/pml68/init.lua
+++ b/lua/pml68/init.lua
@@ -11,8 +11,6 @@ vim.opt.expandtab = true
vim.opt.smartindent = true
-vim.opt.colorcolumn = "80"
-
vim.opt.scrolloff = 10
vim.opt.hlsearch = true
diff --git a/lua/pml68/plugins.lua b/lua/pml68/plugins.lua
index 4e18e13..1823e87 100644
--- a/lua/pml68/plugins.lua
+++ b/lua/pml68/plugins.lua
@@ -291,6 +291,18 @@ local plugins = {
vim.cmd("TSInstall! pkl")
end
},
+ -- Helium
+ {
+ "pml68/helium-neovim",
+ lazy = true,
+ event = "BufReadPre *.hsm",
+ dependencies = {
+ "nvim-treesitter/nvim-treesitter"
+ },
+ build = function()
+ vim.cmd("TSInstall! helium")
+ end
+ },
--JSON
{
"b0o/schemastore.nvim",