chore: minor cleanup

This commit is contained in:
2026-09-23 18:12:00 +02:00
parent c11cf533e6
commit ffa4d52ba4
10 changed files with 19 additions and 38 deletions
+2
View File
@@ -14,6 +14,7 @@ in
{
key = "<C-s>";
action = ":w<CR>";
options = defaultOptions;
}
{
key = "<S-q>";
@@ -38,6 +39,7 @@ in
{
action = ":ToggleTerm direction=float<CR>";
key = "<Space>t";
options = defaultOptions;
}
{
action = "<C-\\><C-n>";
-1
View File
@@ -14,6 +14,5 @@
termguicolors = true;
expandtab = false;
gdefault = true;
cursorlineopt = "both";
};
}
-10
View File
@@ -1,10 +0,0 @@
{ ... }:
{
plugins.guess-indent = {
enable = true;
settings = {
underline.enable = true;
static.enable = true;
};
};
}
-2
View File
@@ -12,8 +12,6 @@
{ name = "nvim_lsp_signature_help"; }
{ name = "path"; }
{ name = "buffer"; }
{ name = "dap"; }
{ name = "blink-emoji"; }
{ name = "blink-ripgrep"; }
];
mapping = {
-5
View File
@@ -4,11 +4,6 @@
enable = true;
settings = {
sticky = true;
toggler = {
block = "<C-x>";
line = "<C-c>";
};
};
};
}
+1 -2
View File
@@ -1,7 +1,7 @@
{ ... }:
{
imports = [
./blink-indent.nix
./guess-indent.nix
./cmp.nix
./comment.nix
./cursorline.nix
@@ -16,7 +16,6 @@
neo-tree.enable = true;
web-devicons.enable = true;
bufferline.enable = true;
nvim-autopairs.enable = true;
notify.enable = true;
toggleterm.enable = true;
treesitter.enable = true;
+6
View File
@@ -0,0 +1,6 @@
{ ... }:
{
plugins.guess-indent = {
enable = true;
};
}
-1
View File
@@ -23,7 +23,6 @@
jsonls.enable = true;
phpactor.enable = true;
qmlls.enable = true;
pylsp.enable = true;
ruff.enable = true;
slint_lsp.enable = true;
};
Generated
+5 -16
View File
@@ -42,23 +42,10 @@
"nixpkgs": {
"locked": {
"lastModified": 1790149054,
"narHash": "sha256-fcRceL4EcNlsCY2GWwzfIVrJyjbA2lpQSuljkc8UXOw=",
"rev": "8825bebf6324e0579d012936eff73379af284b6d",
"type": "tarball",
"url": "https://releases.nixos.org/nixpkgs/nixpkgs-26.11pre1078395.8825bebf6324/nixexprs.tar.zst"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1789724158,
"narHash": "sha256-nlKgrm0dsVhOSopKheVBCcOpiIticufPPVLdVOI0euA=",
"narHash": "sha256-FfjXg6mAzKQBCY+7V9keGWOXG4DV2Eym/qA987lFl8A=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "0a3468a402c449992505b6a9fc5b06580141b750",
"rev": "8825bebf6324e0579d012936eff73379af284b6d",
"type": "github"
},
"original": {
@@ -71,7 +58,9 @@
"nixvim": {
"inputs": {
"flake-parts": "flake-parts",
"nixpkgs": "nixpkgs_2",
"nixpkgs": [
"nixpkgs"
],
"systems": "systems_2"
},
"locked": {
+5 -1
View File
@@ -2,7 +2,11 @@
description = "My Neovim configuration";
inputs = {
nixvim.url = "github:nix-community/nixvim";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils.url = "github:numtide/flake-utils";
};