aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-04-25 19:23:11 +0200
committerpml68 <tutorialmester@gmail.com>2024-04-25 19:23:11 +0200
commit4175c130ea83b9682e1c39889f27f2f47e06e24a (patch)
tree44945df668669f995d4ad2f4aabd0097ab6d2dc6 /lua/pml68
parentfeat: add screenkey.nvim plugin + <leader>sk remap (diff)
downloadnvim-4175c130ea83b9682e1c39889f27f2f47e06e24a.tar.gz
feat: add helium-neovim plugin
Diffstat (limited to 'lua/pml68')
-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",