Compare commits

..

No commits in common. "aaab1ea5bde64f23bf04b270ec7c2d8a333e3e57" and "0256cebaca7690307fbf71b310b8fdb422160210" have entirely different histories.

4 changed files with 8 additions and 15 deletions

View file

@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{ pkgs, ... }: {
imports = [
./ai
@ -13,4 +12,5 @@
# Persistence
plugins.persistence.enable = true;
}

View file

@ -9,17 +9,16 @@
settings.completion.callable.snippets = "add_parentheses";
};
conform-nvim.settings = {
formatters_by_ft = {
lint = {
lintersByFt = {
rust = [ "cargo" ];
};
formatters = {
linters = {
cargo = {
command = "cargo-fmt";
cmd = "${pkgs.rustfmt}/bin/cargo-fmt";
};
};
};
};
}

View file

@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{ pkgs, ... }: {
plugins.telescope = {
enable = true;
extensions = {
@ -18,11 +17,6 @@
action = "find_files";
options.desc = "Find project files";
};
"<leader>f" = {
action = "live_grep";
options.desc = "Livegrep";
};
};
};
}

View file

@ -1,4 +1,4 @@
{
description = "neo2005 flake";
# Flake reused directly from https://github.com/Ahwxorg/nixvim-config/