mirror of
https://github.com/Superredstone/nixvim.git
synced 2026-09-26 04:07:53 +02:00
chore: minor cleanup
This commit is contained in:
@@ -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>";
|
||||
|
||||
@@ -14,6 +14,5 @@
|
||||
termguicolors = true;
|
||||
expandtab = false;
|
||||
gdefault = true;
|
||||
cursorlineopt = "both";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
{ ... }:
|
||||
{
|
||||
plugins.guess-indent = {
|
||||
enable = true;
|
||||
settings = {
|
||||
underline.enable = true;
|
||||
static.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -12,8 +12,6 @@
|
||||
{ name = "nvim_lsp_signature_help"; }
|
||||
{ name = "path"; }
|
||||
{ name = "buffer"; }
|
||||
{ name = "dap"; }
|
||||
{ name = "blink-emoji"; }
|
||||
{ name = "blink-ripgrep"; }
|
||||
];
|
||||
mapping = {
|
||||
|
||||
@@ -4,11 +4,6 @@
|
||||
enable = true;
|
||||
settings = {
|
||||
sticky = true;
|
||||
|
||||
toggler = {
|
||||
block = "<C-x>";
|
||||
line = "<C-c>";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
plugins.guess-indent = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
@@ -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
@@ -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": {
|
||||
|
||||
@@ -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";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user