Skip to content

Instantly share code, notes, and snippets.

@tomsmalley
Created April 17, 2026 13:40
Show Gist options
  • Select an option

  • Save tomsmalley/0abebd9d7cbe2f72825f355967fdce9c to your computer and use it in GitHub Desktop.

Select an option

Save tomsmalley/0abebd9d7cbe2f72825f355967fdce9c to your computer and use it in GitHub Desktop.
nvim hls lsp
{ -- LSP progress widget
"j-hui/fidget.nvim",
opts = { },
},
{ -- haskell lsp
"mrcjkb/haskell-tools.nvim",
version = "^6",
lazy = false,
init = function()
vim.g.haskell_tools = {
hls = {
settings = {
sessionLoading = "multipleComponents",
},
},
}
map("n", "gt", "<cmd>lua require('telescope.builtin').lsp_type_definitions()<CR>", opts)
map("n", "gd", "<cmd>lua vim.lsp.buf.definition()<CR>", opts)
end,
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment