Created
April 17, 2026 13:40
-
-
Save tomsmalley/0abebd9d7cbe2f72825f355967fdce9c to your computer and use it in GitHub Desktop.
nvim hls lsp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { -- 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