From 3dea863ebbb39e7333c2240aab5e78dfd5ab0db1 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Wed, 26 Jun 2024 12:11:31 -0700 Subject: [PATCH] add hypr and make kebab case word in typescript --- after/ftplugin/typescriptreact.lua | 1 + lazyvim.json | 9 ++++++--- lua/plugins/hypr.lua | 7 +++++++ 3 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 after/ftplugin/typescriptreact.lua create mode 100644 lua/plugins/hypr.lua diff --git a/after/ftplugin/typescriptreact.lua b/after/ftplugin/typescriptreact.lua new file mode 100644 index 0000000..eeecf74 --- /dev/null +++ b/after/ftplugin/typescriptreact.lua @@ -0,0 +1 @@ +vim.opt.iskeyword = vim.opt.iskeyword + { "-" } diff --git a/lazyvim.json b/lazyvim.json index d995330..6fa745e 100644 --- a/lazyvim.json +++ b/lazyvim.json @@ -1,9 +1,12 @@ { "extras": [ + "lazyvim.plugins.extras.coding.mini-surround", "lazyvim.plugins.extras.dap.core", "lazyvim.plugins.extras.editor.aerial", + "lazyvim.plugins.extras.editor.harpoon2", "lazyvim.plugins.extras.editor.navic", "lazyvim.plugins.extras.formatting.prettier", + "lazyvim.plugins.extras.lang.clangd", "lazyvim.plugins.extras.lang.elixir", "lazyvim.plugins.extras.lang.go", "lazyvim.plugins.extras.lang.java", @@ -14,7 +17,7 @@ "lazyvim.plugins.extras.ui.mini-animate" ], "news": { - "NEWS.md": "2123" + "NEWS.md": "6077" }, - "version": 3 -} + "version": 6 +} \ No newline at end of file diff --git a/lua/plugins/hypr.lua b/lua/plugins/hypr.lua new file mode 100644 index 0000000..e1b865d --- /dev/null +++ b/lua/plugins/hypr.lua @@ -0,0 +1,7 @@ +return { + { + "theRealCarneiro/hyprland-vim-syntax", + dependencies = { "nvim-treesitter/nvim-treesitter" }, + ft = "hypr", + }, +}