forked from Shinonome/fred-neovim
11 lines
222 B
Nix
11 lines
222 B
Nix
{
|
|
plugins = {
|
|
conform-nvim = {
|
|
enable = true;
|
|
settings = { formatters_by_ft.go = [ "golines" ]; };
|
|
};
|
|
lsp.servers.gopls.enable = true;
|
|
none-ls.sources.formatting.golines.enable = true;
|
|
};
|
|
}
|