Compare commits

..

6 Commits

Author SHA1 Message Date
bot cbe1dda0f0 chore(deps): update cachix/cachix-action action to v17
build-flake / build (pull_request) Failing after 6m14s
check-commits / Check commits (pull_request) Successful in 14s
2026-04-21 00:02:53 +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
9 changed files with 106 additions and 39 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ jobs:
experimental-features = nix-command flakes
github_access_token: ${{ secrets.GH_ACCESS_TOKEN }}
nix_path: nixpkgs=channel:nixos-25.11
- uses: cachix/cachix-action@v16
- uses: cachix/cachix-action@v17
with:
name: palkx
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
+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;
};
};
}
+9
View File
@@ -0,0 +1,9 @@
{
plugins.lualine = {
enable = true;
settings.options = {
theme = "catppuccin";
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
+21 -21
View File
@@ -5,11 +5,11 @@
"nixpkgs-lib": "nixpkgs-lib"
},
"locked": {
"lastModified": 1765835352,
"narHash": "sha256-XswHlK/Qtjasvhd1nOa1e8MgZ8GS//jBoTqWtrS1Giw=",
"lastModified": 1775087534,
"narHash": "sha256-91qqW8lhL7TLwgQWijoGBbiD4t7/q75KTi8NxjVmSmA=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "a34fae9c08a15ad73f295041fec82323541400a9",
"rev": "3107b77cd68437b9a76194f0f7f9c55f2329ca5b",
"type": "github"
},
"original": {
@@ -26,11 +26,11 @@
]
},
"locked": {
"lastModified": 1765835352,
"narHash": "sha256-XswHlK/Qtjasvhd1nOa1e8MgZ8GS//jBoTqWtrS1Giw=",
"lastModified": 1768135262,
"narHash": "sha256-PVvu7OqHBGWN16zSi6tEmPwwHQ4rLPU9Plvs8/1TUBY=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "a34fae9c08a15ad73f295041fec82323541400a9",
"rev": "80daad04eddbbf5a4d883996a73f3f542fa437ac",
"type": "github"
},
"original": {
@@ -87,11 +87,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1771714954,
"narHash": "sha256-nhZJPnBavtu40/L2aqpljrfUNb2rxmWTmSjK2c9UKds=",
"lastModified": 1776067740,
"narHash": "sha256-B35lpsqnSZwn1Lmz06BpwF7atPgFmUgw1l8KAV3zpVQ=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "afbbf774e2087c3d734266c22f96fca2e78d3620",
"rev": "7e495b747b51f95ae15e74377c5ce1fe69c1765f",
"type": "github"
},
"original": {
@@ -103,11 +103,11 @@
},
"nixpkgs-lib": {
"locked": {
"lastModified": 1765674936,
"narHash": "sha256-k00uTP4JNfmejrCLJOwdObYC9jHRrr/5M/a/8L2EIdo=",
"lastModified": 1774748309,
"narHash": "sha256-+U7gF3qxzwD5TZuANzZPeJTZRHS29OFQgkQ2kiTJBIQ=",
"owner": "nix-community",
"repo": "nixpkgs.lib",
"rev": "2075416fcb47225d9b68ac469a5c4801a9c4dd85",
"rev": "333c4e0545a6da976206c74db8773a1645b5870a",
"type": "github"
},
"original": {
@@ -118,11 +118,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1771714954,
"narHash": "sha256-nhZJPnBavtu40/L2aqpljrfUNb2rxmWTmSjK2c9UKds=",
"lastModified": 1776067740,
"narHash": "sha256-B35lpsqnSZwn1Lmz06BpwF7atPgFmUgw1l8KAV3zpVQ=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "afbbf774e2087c3d734266c22f96fca2e78d3620",
"rev": "7e495b747b51f95ae15e74377c5ce1fe69c1765f",
"type": "github"
},
"original": {
@@ -140,11 +140,11 @@
"systems": "systems_2"
},
"locked": {
"lastModified": 1766849711,
"narHash": "sha256-gtLBwhgjERca1UCzGkFplD5epIVRiNkePHVVtyFr73g=",
"lastModified": 1769049374,
"narHash": "sha256-h0Os2qqNyycDY1FyZgtbn28VF1ySP74/n0f+LDd8j+w=",
"owner": "nix-community",
"repo": "nixvim",
"rev": "cae79c48e93bd61e478dfc12456bf68b1ce66074",
"rev": "b8f76bf5751835647538ef8784e4e6ee8deb8f95",
"type": "github"
},
"original": {
@@ -164,11 +164,11 @@
]
},
"locked": {
"lastModified": 1761730856,
"narHash": "sha256-t1i5p/vSWwueZSC0Z2BImxx3BjoUDNKyC2mk24krcMY=",
"lastModified": 1768249818,
"narHash": "sha256-ANfn5OqIxq3HONPIXZ6zuI5sLzX1sS+2qcf/Pa0kQEc=",
"owner": "NuschtOS",
"repo": "search",
"rev": "e29de6db0cb3182e9aee75a3b1fd1919d995d85b",
"rev": "b6f77b88e9009bfde28e2130e218e5123dc66796",
"type": "github"
},
"original": {