From 7530c4c2b6930e40ea1f4b26623a22e1c63cc677 Mon Sep 17 00:00:00 2001 From: mjhika <1zzt6ovh@mojica.anonaddy.com> Date: Sun, 4 Feb 2024 22:54:29 -0500 Subject: [PATCH] add scala support --- init.lua | 2 ++ lazy-lock.json | 1 + lua/custom/plugins/scala.lua | 6 ++++++ 3 files changed, 9 insertions(+) create mode 100644 lua/custom/plugins/scala.lua diff --git a/init.lua b/init.lua index 96087b52..a56ed53f 100644 --- a/init.lua +++ b/init.lua @@ -132,6 +132,8 @@ telscope.setup { file_ignore_patterns = { "node_modules", ".idea", + "project/target", --https://www.lua.org/pil/20.2.html + "target", --https://www.lua.org/pil/20.2.html ".cache", ".cpcache", "cljs%-runtime" }, diff --git a/lazy-lock.json b/lazy-lock.json index dc0b1fb1..164b8885 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -21,6 +21,7 @@ "nvim-autopairs": { "branch": "master", "commit": "096d0baecc34f6c5d8a6dd25851e9d5ad338209b" }, "nvim-cmp": { "branch": "main", "commit": "04e0ca376d6abdbfc8b52180f8ea236cbfddf782" }, "nvim-lspconfig": { "branch": "master", "commit": "9a6279953c82d01b58825a46ede032ab246a5983" }, + "nvim-metals": { "branch": "main", "commit": "d90ea43ded7ec651606b0a533ae9740083436e58" }, "nvim-parinfer": { "branch": "master", "commit": "5ca09287ab3f4144f78ff7977fabc27466f71044" }, "nvim-treesitter": { "branch": "master", "commit": "4fbf150a1621d52f17b099506e1a32f107079210" }, "nvim-treesitter-textobjects": { "branch": "master", "commit": "8edd5a6d96936bdff23333d3bc177481388839e5" }, diff --git a/lua/custom/plugins/scala.lua b/lua/custom/plugins/scala.lua new file mode 100644 index 00000000..2ecc6b62 --- /dev/null +++ b/lua/custom/plugins/scala.lua @@ -0,0 +1,6 @@ +return { + { + "scalameta/nvim-metals", + ft = "scala", + } +}