feat: add kotlin language support with basic features

This commit is contained in:
Doğaç Eldenk 2024-04-01 10:48:16 -05:00
parent 97480dc5d2
commit 5037654799

View file

@ -0,0 +1,26 @@
return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, {
"kotlin",
})
end,
},
{
"williamboman/mason.nvim",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, {
"kotlin-language-server",
})
end,
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
kotlin_language_server = {},
},
},
},
}