mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
Youwen Wu
414e46dd15
* switch to oil.nvim from yazi * use lualine with custom config * optimize settings
65 lines
1.4 KiB
Nix
65 lines
1.4 KiB
Nix
# Code formatters
|
|
{ pkgs, ... }:
|
|
{
|
|
extraPackages = with pkgs; [
|
|
# TS/JS, Markdown, TOML, JSON, etc
|
|
nodePackages.prettier
|
|
|
|
# Rust
|
|
rustfmt
|
|
|
|
# Nix
|
|
nixfmt-rfc-style
|
|
|
|
# Python
|
|
black
|
|
|
|
# Lua
|
|
stylua
|
|
|
|
# Haskell
|
|
haskellPackages.fourmolu
|
|
|
|
taplo
|
|
|
|
# Misc
|
|
# codespell
|
|
];
|
|
|
|
plugins.conform-nvim = {
|
|
enable = true;
|
|
# because combinePlugins.enable = true, the collision of `doc` is
|
|
# unavoidable. this renames them.
|
|
package = pkgs.vimPlugins.conform-nvim.overrideAttrs (oldAttrs: {
|
|
postInstall =
|
|
(oldAttrs.postInstall or "")
|
|
+ ''
|
|
mv $out/doc/recipes.md $out/doc/conform-nvim_recipes.md
|
|
'';
|
|
});
|
|
# package = pkgs.vimPlugins.conform-nvim;
|
|
settings = {
|
|
format_on_save = {
|
|
timeoutMs = 500;
|
|
lspFallback = true;
|
|
};
|
|
formatters_by_ft = {
|
|
lua = [ "stylua" ];
|
|
python = [ "black" ];
|
|
nix = [ "nixfmt" ];
|
|
svelte = [ "prettier" ];
|
|
rust = [ "rustfmt" ];
|
|
haskell = [ "fourmolu" ];
|
|
toml = [ "taplo" ];
|
|
json = [ "prettier" ];
|
|
markdown = [ "prettier" ];
|
|
yaml = [ "prettier" ];
|
|
html = [ "prettier" ];
|
|
javascript = [ "prettier" ];
|
|
typescript = [ "prettier" ];
|
|
# "*" = ["codespell"];
|
|
"_" = [ "trim_whitespace" ];
|
|
};
|
|
};
|
|
};
|
|
}
|