Replies: 1 comment
-
This is how it looks for me :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I wanted to share my experience setting up
neovim
with koka:language server
koka --language-server --lsstdio
nvim-lspconfig
plugin and then addinginit.lua
vim.lsp.inlay_hint.enable()
which is neovim from version 10 upwards and is supported by the koka language serversyntax highlighting
There is a tree-sitter grammar for koka: https://github.com/mtoohey31/tree-sitter-koka
This can be used by neovim according to
:help treesitter
by<any runtimepath directory>/parser/koka.*
I have contributed a patch to nixpkgs which should make it possible to add the koka tree-sitter grammar to your neovim by adding
pkgs.neovimUtils.grammarToPlugin pkgs.tree-sitter-grammars.tree-sitter-koka
to yourprograms.neovim.plugins
configuration option.Beta Was this translation helpful? Give feedback.
All reactions