Add neovim rust formatting

This commit is contained in:
GHOSCHT 2024-02-16 12:19:41 +01:00
parent 1624cf7a21
commit 25855e6dc0
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
2 changed files with 12 additions and 8 deletions

View file

@ -1,13 +1,14 @@
{
config,
lib,
pkgs,
# vars,
{ config
, lib
, pkgs
, # vars,
...
}: let
}:
let
vars = import ../../../../vars.nix;
colors = config.colorScheme.colors;
in {
in
{
home.sessionVariables.EDITOR = "nvim";
programs.neovim = {
@ -28,6 +29,7 @@ in {
black # pyton
alejandra # nix
clang-tools_16 # c/c++
rustfmt
# Linters
ruff # python
@ -231,7 +233,7 @@ in {
];
terminal = true;
type = "Application";
categories = ["Utility" "TextEditor"];
categories = [ "Utility" "TextEditor" ];
};
};
}

View file

@ -15,6 +15,8 @@ local opts = {
null_ls.builtins.formatting.clang_format,
-- Nix
null_ls.builtins.formatting.alejandra,
-- Rust
null_ls.builtins.formatting.rustfmt,
},
on_attach = function(client, bufnr)
if client.supports_method("textDocument/formatting") then