1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-04-28 08:45:04 +02:00
git.oat.zone--dark-firepit-.../config/neovim/coc-settings.nix
System administrator ec00c09f2e Dotfiles
2022-01-11 17:44:40 +00:00

31 lines
554 B
Nix

{
languageserver = {
dhall = {
command = "dhall-lsp-server";
filetypes = [ "dhall" ];
};
haskell = {
command = "haskell-language-server-wrapper";
args = [ "--lsp" ];
rootPatterns = [
"stack.yaml"
"hie.yaml"
".hie-bios"
"BUILD.bazel"
".cabal"
"cabal.project"
"package.yaml"
];
filetypes = [ "hs" "lhs" "haskell" ];
};
nix = {
command = "rnix-lsp";
filetypes = [ "nix" ];
};
};
"yank.highlight.duration" = 700;
}