aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/kotlin_language_server.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-11-14 00:43:43 -0500
committerJustin M. Keyes <justinkz@gmail.com>2025-11-14 01:20:14 -0500
commit2bf52f747b8633d38b671d0e9b968ec0a3133bcb (patch)
tree9c19e3a62dee7a73a302bd0b7cb5bae7c24a1b4d /lsp/kotlin_language_server.lua
parentci: retreat to luals (diff)
downloadnvim-lspconfig-2bf52f747b8633d38b671d0e9b968ec0a3133bcb.tar
nvim-lspconfig-2bf52f747b8633d38b671d0e9b968ec0a3133bcb.tar.gz
nvim-lspconfig-2bf52f747b8633d38b671d0e9b968ec0a3133bcb.tar.bz2
nvim-lspconfig-2bf52f747b8633d38b671d0e9b968ec0a3133bcb.tar.lz
nvim-lspconfig-2bf52f747b8633d38b671d0e9b968ec0a3133bcb.tar.xz
nvim-lspconfig-2bf52f747b8633d38b671d0e9b968ec0a3133bcb.tar.zst
nvim-lspconfig-2bf52f747b8633d38b671d0e9b968ec0a3133bcb.zip
fix: luals warnings
Diffstat (limited to 'lsp/kotlin_language_server.lua')
-rw-r--r--lsp/kotlin_language_server.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/kotlin_language_server.lua b/lsp/kotlin_language_server.lua
index b5446e2e..ee18f32a 100644
--- a/lsp/kotlin_language_server.lua
+++ b/lsp/kotlin_language_server.lua
@@ -37,6 +37,6 @@ return {
cmd = { 'kotlin-language-server' },
init_options = {
-- Enables caching and use project root to store cache data.
- storagePath = vim.fs.root(vim.fn.expand '%:p:h', root_files),
+ storagePath = vim.fs.root(vim.fn.expand '%:p:h', root_files) --[[@as string]],
},
}