nixos/common/neovim/haskell.nix

18 lines
381 B
Nix
Raw Permalink Normal View History

2024-02-16 13:59:46 +01:00
# haskell integration, adapted from @srid
# https://github.com/srid/nixos-config/blob/master/home/neovim/haskell.nix
{ pkgs, ... }:
{
programs.neovim = {
plugins = with pkgs.vimPlugins; [
haskell-vim
vim-hoogle
];
extraLuaConfig = ''
-- Setup language servers.
local lspconfig = require('lspconfig')
lspconfig.hls.setup {}
'';
};
}