Compare commits

...

25 Commits

Author SHA1 Message Date
bot ca32cc473c chore(flake): update flake.lock 2026-06-06 03:16:25 +00:00
palkx 5d1c7ed0fe chore(flake): update to nixos2605
build-flake / Build flake (push) Successful in 5m30s
build-flake / Release a new version (push) Successful in 12s
2026-06-05 13:36:45 +03:00
bot 404295e2fa chore(flake): update flake.lock 2026-05-25 03:16:05 +00:00
bot 350e99ebdb chore(flake): update flake.lock 2026-05-22 00:10:57 +00:00
bot b1378e4ba7 chore(flake): update flake.lock 2026-05-05 03:15:38 +00:00
palkx e9f7b49c57 feat: add uk langmap
build-flake / Build flake (push) Successful in 4m34s
build-flake / Release a new version (push) Successful in 15s
2026-04-20 13:52:05 +03:00
bot a27be979fe chore(flake): update flake.lock 2026-04-17 03:15:20 +00:00
palkx 6855a707d4 feat: update plugins, flake
build-flake / Build flake (push) Successful in 9m52s
build-flake / Release a new version (push) Successful in 13s
Sync flake lock with main nix-configuration project / Sync flake lock with main nix-configuration project (push) Successful in 7s
Sync flake lock with main nix-configuration project / Build flake (push) Successful in 9m9s
Sync flake lock with main nix-configuration project / Release a new version (push) Successful in 10s
2026-04-16 18:14:54 +03:00
bot 03dfec1389 chore(flake): update flake.lock 2026-02-28 03:15:25 +00:00
bot bcad05d8ec chore(flake): update flake.lock 2026-02-25 03:15:29 +00:00
bot 232e31f4e4 chore(flake): update flake.lock 2026-02-24 03:15:32 +00:00
bot ec9e40dd6b chore(flake): update flake.lock 2026-02-21 03:15:26 +00:00
bot 226642ba54 chore(flake): update flake.lock 2026-02-20 03:15:25 +00:00
bot d8ac9cfcfe chore(flake): update flake.lock 2026-02-17 03:15:26 +00:00
bot 30da4f8404 chore(flake): update flake.lock 2026-02-15 03:15:28 +00:00
bot 3aef60a590 chore(flake): update flake.lock 2026-02-12 03:15:23 +00:00
bot 8ad5890f43 chore(flake): update flake.lock 2026-02-11 03:15:32 +00:00
bot 673a4063aa chore(flake): update flake.lock 2026-02-08 03:15:25 +00:00
bot be123a6ae3 chore(flake): update flake.lock 2026-02-04 03:15:31 +00:00
bot f588ea9713 chore(flake): update flake.lock 2026-02-02 03:15:32 +00:00
bot 20663750ab chore(flake): update flake.lock 2026-01-29 03:15:23 +00:00
bot d1e2bd1e4e chore(flake): update flake.lock 2026-01-27 03:15:27 +00:00
bot 66e5105f72 chore(flake): update flake.lock 2026-01-24 03:15:32 +00:00
bot fbb56f446a chore(flake): update flake.lock 2026-01-22 03:15:24 +00:00
bot 63d25677a7 chore(flake): update flake.lock 2026-01-20 03:15:28 +00:00
9 changed files with 112 additions and 131 deletions
+1 -4
View File
@@ -6,19 +6,16 @@
./modules/plugins/lsp
./modules/plugins/airline.nix
./modules/plugins/blink-cmp.nix
./modules/plugins/bufferline.nix
./modules/plugins/conform-nvim.nix
./modules/plugins/fzf-lua.nix
./modules/plugins/gitsigns.nix
./modules/plugins/lualine.nix
./modules/plugins/mini.nix
# ./modules/plugins/neotree.nix
./modules/plugins/oil.nix
./modules/plugins/snacks.nix
./modules/plugins/tmux-navigator.nix
./modules/plugins/treesitter.nix
./modules/plugins/undotree.nix
./modules/plugins/venv-selector.nix
./modules/plugins/which-key.nix
];
+9
View File
@@ -0,0 +1,9 @@
{
plugins.lightline = {
enable = true;
settings = {
colorscheme = "catppuccin";
tabline = false;
};
};
}
+8
View File
@@ -0,0 +1,8 @@
{
plugins.lualine = {
enable = true;
settings.options = {
globalstatus = true;
};
};
}
-1
View File
@@ -5,7 +5,6 @@
modules = {
icons = { };
comment = { };
diff = { };
};
};
}
+13 -6
View File
@@ -4,14 +4,14 @@
enable = true;
settings = {
bigfile.enabled = true;
notifier.enabled = true;
quickfile.enabled = true;
statuscolumn.enabled = true;
words.enabled = true;
lazygit.enabled = true;
picker.enabled = true;
indent.enabled = true;
scope.enabled = true;
picker = {
enabled = true;
matcher = {
frecency = true;
};
};
};
};
@@ -436,6 +436,13 @@
desc = "Delete Buffer";
};
}
{
key = "<leader>bo";
action = lib.nixvim.mkRaw "function() Snacks.bufdelete.other() end";
options = {
desc = "Delete Other Buffers";
};
}
{
key = "<leader>cR";
action = lib.nixvim.mkRaw "function() Snacks.rename.rename_file() end";
+38 -6
View File
@@ -3,7 +3,6 @@
plugins = {
treesitter = {
enable = true;
settings = {
indent = {
enable = true;
@@ -17,12 +16,48 @@
grammarPackages = pkgs.vimPlugins.nvim-treesitter.allGrammars;
};
# Show sticky context window at top
treesitter-context = {
enable = false;
enable = true;
settings = {
max_lines = 5;
mode = "topline";
trim_scope = "outer";
};
};
# highlight scoped function
indent-blankline = {
enable = true;
settings = {
exclude = {
buftypes = [
"terminal"
"quickfix"
];
filetypes = [
""
"checkhealth"
"help"
"lspinfo"
"packer"
"TelescopePrompt"
"TelescopeResults"
];
};
indent = {
char = "";
};
scope = {
show_end = false;
show_exact_scope = true;
show_start = true;
};
};
};
treesitter-textobjects = {
enable = true;
enable = false;
settings = {
select = {
enable = true;
@@ -31,7 +66,4 @@
};
};
};
extraConfigLua = ''
local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
'';
}
+14
View File
@@ -62,6 +62,15 @@
scrolloff = 5;
};
# Enable limit colomn
opts.colorcolumn = "80,120";
opts.wrap = false;
# This info is displayed in lightline
opts.showmode = false;
# UK keymap
opts.langmap = "йq,цw,уe,кr,еt,нy,гu,шi,щo,зp,х[,ї],фa,іs,вd,аf,пg,рh,оj,лk,дl,ж\\;,є',яz,чx,сc,мv,иb,тn,ьm,б\\,,ю.,ЙQ,ЦW,УE,КR,ЕT,НY,ГU,ШI,ЩO,ЗP,Х{,Ї},ФA,ІS,ВD,АF,ПG,РH,ОJ,ЛK,ДL,Ж:,Є\",ЯZ,ЧX,СC,МV,ИB,ТN,ЬM,Б<,Ю>,ґ`,Ґ~";
diagnostic.settings = {
update_in_insert = true;
severity_sort = true;
@@ -112,4 +121,9 @@
# Comment.underline = true;
# Comment.bold = true;
# };
withNodeJs = false;
withPerl = false;
withPython3 = false;
withRuby = false;
}
Generated
+27 -112
View File
@@ -5,11 +5,11 @@
"nixpkgs-lib": "nixpkgs-lib"
},
"locked": {
"lastModified": 1765835352,
"narHash": "sha256-XswHlK/Qtjasvhd1nOa1e8MgZ8GS//jBoTqWtrS1Giw=",
"lastModified": 1778716662,
"narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "a34fae9c08a15ad73f295041fec82323541400a9",
"rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb",
"type": "github"
},
"original": {
@@ -26,11 +26,11 @@
]
},
"locked": {
"lastModified": 1765835352,
"narHash": "sha256-XswHlK/Qtjasvhd1nOa1e8MgZ8GS//jBoTqWtrS1Giw=",
"lastModified": 1778716662,
"narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "a34fae9c08a15ad73f295041fec82323541400a9",
"rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb",
"type": "github"
},
"original": {
@@ -39,75 +39,29 @@
"type": "github"
}
},
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"ixx": {
"inputs": {
"flake-utils": [
"nixvim",
"nuschtosSearch",
"flake-utils"
],
"nixpkgs": [
"nixvim",
"nuschtosSearch",
"nixpkgs"
]
},
"locked": {
"lastModified": 1754860581,
"narHash": "sha256-EM0IE63OHxXCOpDHXaTyHIOk2cNvMCGPqLt/IdtVxgk=",
"owner": "NuschtOS",
"repo": "ixx",
"rev": "babfe85a876162c4acc9ab6fb4483df88fa1f281",
"type": "github"
},
"original": {
"owner": "NuschtOS",
"ref": "v0.1.1",
"repo": "ixx",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1768621446,
"narHash": "sha256-6YwHV1cjv6arXdF/PQc365h1j+Qje3Pydk501Rm4Q+4=",
"owner": "nixos",
"lastModified": 1780453794,
"narHash": "sha256-bXMRa9VTsHSPXL4Cw8R6JJLQeY3Y/IP4+YJCYVmQ7FY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "72ac591e737060deab2b86d6952babd1f896d7c5",
"rev": "6b316287bae2ee04c9b93c8c858d930fd07d7338",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-25.11",
"owner": "NixOS",
"ref": "nixos-26.05",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs-lib": {
"locked": {
"lastModified": 1765674936,
"narHash": "sha256-k00uTP4JNfmejrCLJOwdObYC9jHRrr/5M/a/8L2EIdo=",
"lastModified": 1777168982,
"narHash": "sha256-GOkGPcboWE9BmGCRMLX3worL4EMnsnG8MyKmXNeYuhQ=",
"owner": "nix-community",
"repo": "nixpkgs.lib",
"rev": "2075416fcb47225d9b68ac469a5c4801a9c4dd85",
"rev": "f5901329dade4a6ea039af1433fb087bd9c1fe14",
"type": "github"
},
"original": {
@@ -118,16 +72,16 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1768621446,
"narHash": "sha256-6YwHV1cjv6arXdF/PQc365h1j+Qje3Pydk501Rm4Q+4=",
"owner": "nixos",
"lastModified": 1780453794,
"narHash": "sha256-bXMRa9VTsHSPXL4Cw8R6JJLQeY3Y/IP4+YJCYVmQ7FY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "72ac591e737060deab2b86d6952babd1f896d7c5",
"rev": "6b316287bae2ee04c9b93c8c858d930fd07d7338",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-25.11",
"owner": "NixOS",
"ref": "nixos-26.05",
"repo": "nixpkgs",
"type": "github"
}
@@ -136,53 +90,29 @@
"inputs": {
"flake-parts": "flake-parts_2",
"nixpkgs": "nixpkgs_2",
"nuschtosSearch": "nuschtosSearch",
"systems": "systems_2"
"systems": "systems"
},
"locked": {
"lastModified": 1766849711,
"narHash": "sha256-gtLBwhgjERca1UCzGkFplD5epIVRiNkePHVVtyFr73g=",
"lastModified": 1780214453,
"narHash": "sha256-Bfq9y0X6Vs4UPb67u7hN3jt7fJKHtl3+g0lBSDebRNg=",
"owner": "nix-community",
"repo": "nixvim",
"rev": "cae79c48e93bd61e478dfc12456bf68b1ce66074",
"rev": "167da56c3ab1e51751a6ae4a997ed66587f9edae",
"type": "github"
},
"original": {
"owner": "nix-community",
"ref": "nixos-25.11",
"ref": "nixos-26.05",
"repo": "nixvim",
"type": "github"
}
},
"nuschtosSearch": {
"inputs": {
"flake-utils": "flake-utils",
"ixx": "ixx",
"nixpkgs": [
"nixvim",
"nixpkgs"
]
},
"locked": {
"lastModified": 1761730856,
"narHash": "sha256-t1i5p/vSWwueZSC0Z2BImxx3BjoUDNKyC2mk24krcMY=",
"owner": "NuschtOS",
"repo": "search",
"rev": "e29de6db0cb3182e9aee75a3b1fd1919d995d85b",
"type": "github"
},
"original": {
"owner": "NuschtOS",
"repo": "search",
"type": "github"
}
},
"root": {
"inputs": {
"flake-parts": "flake-parts",
"nixpkgs": "nixpkgs",
"nixvim": "nixvim",
"systems": "systems_3"
"systems": "systems_2"
}
},
"systems": {
@@ -214,21 +144,6 @@
"repo": "default",
"type": "github"
}
},
"systems_3": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
+2 -2
View File
@@ -2,9 +2,9 @@
description = "Neovim configuration, declaratively written using nix";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
nixvim.url = "github:nix-community/nixvim/nixos-25.11";
nixvim.url = "github:nix-community/nixvim/nixos-26.05";
flake-parts.url = "github:hercules-ci/flake-parts";