Added csharp format support, cleaned neo-tree's aesthetics a bit

This commit is contained in:
Fred Drake
2024-10-02 00:01:44 -04:00
parent 4972eb4147
commit 1b8b135353
7 changed files with 65 additions and 13 deletions
+28
View File
@@ -0,0 +1,28 @@
{ pkgs, ... }: {
plugins = {
conform-nvim = {
enable = true;
settings = { formatters_by_ft.rust = [ "rustfmt" ]; };
};
rustaceanvim = {
enable = true;
settings = {
dap.adapter = {
command = "${pkgs.lldb_19}/bin/lldb-dap";
type = "executable";
};
tools.enable_clippy = true;
server = {
default_settings = {
inlayHints = { lifetimeElisionHints = { enable = "always"; }; };
rust-analyzer = {
cargo = { allFeatures = true; };
check = { command = "clippy"; };
};
};
};
};
};
};
}