Dump nixos config after scrubing
This commit is contained in:
commit
5fa4c76c24
854 changed files with 30072 additions and 0 deletions
12
home-modules/explicit-configs/nvim/lua/lsp/roc-ls.lua
Normal file
12
home-modules/explicit-configs/nvim/lua/lsp/roc-ls.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
require'lspconfig'.roc_ls.setup{
|
||||
offset_encoding = "utf-8",
|
||||
}
|
||||
|
||||
-- Should get rid of this once semantic highlighting gets better!
|
||||
vim.api.nvim_create_autocmd('LspAttach', {
|
||||
group = vim.api.nvim_create_augroup('UserLspConfig', {}),
|
||||
callback = function(ev)
|
||||
local client = vim.lsp.get_client_by_id(ev.data.client_id)
|
||||
client.server_capabilities.semanticTokensProvider = nil
|
||||
end,
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue