From 63f519d5b45a41439157ccea31d08a660e1d9a83 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Tue, 3 Feb 2026 13:56:24 +0200 Subject: [PATCH] Update 2026-02-03 --- lazy-lock.json | 9 +++++---- lua/config/options.lua | 2 +- lua/plugins/colorful-winsep.lua | 9 +++++++++ lua/plugins/conform.lua | 5 ++++- lua/plugins/neocord.lua | 1 + lua/plugins/snacks.lua | 18 ++++++++++++++---- spell/lv.utf-8.add | 3 +++ spell/lv.utf-8.add.spl | Bin 7200 -> 7223 bytes 8 files changed, 37 insertions(+), 10 deletions(-) create mode 100644 lua/plugins/colorful-winsep.lua diff --git a/lazy-lock.json b/lazy-lock.json index b027041..27aee11 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -6,7 +6,7 @@ "atone.nvim": { "branch": "main", "commit": "d1c1f08bfe23ac56536d0091c8a398938ee9db4e" }, "blink-cmp-git": { "branch": "master", "commit": "e3ad0ffaaa3b3b7e2158cc72cd6dad2d19842c46" }, "blink-emoji.nvim": { "branch": "master", "commit": "066013e4c98a9318408ee3f1ca2dbcb6fa3e4c06" }, - "blink-ripgrep.nvim": { "branch": "main", "commit": "f306c3b3390b1afd49e84fc61a9c32cda1f95e12" }, + "blink-ripgrep.nvim": { "branch": "main", "commit": "77eedf73894688d1cccc13dc12df41afd276ca6b" }, "blink.cmp": { "branch": "main", "commit": "b19413d214068f316c78978b08264ed1c41830ec" }, "blink.compat": { "branch": "main", "commit": "2ed6d9a28b07fa6f3bface818470605f8896408c" }, "catppuccin.nvim": { "branch": "main", "commit": "beaf41a30c26fd7d6c386d383155cbd65dd554cd" }, @@ -16,7 +16,8 @@ "cmake-tools.nvim": { "branch": "master", "commit": "f34418d7aa57c730ee91b3e45e7612978506fcf3" }, "cmp-dbee": { "branch": "main", "commit": "1650f67b9bf43c029fc37570665ca895a33cdf5a" }, "colorful-menu.nvim": { "branch": "master", "commit": "b51a659459df8d078201aefc995db8175ed55e84" }, - "conform.nvim": { "branch": "master", "commit": "238f542a118984a88124fc915d5b981680418707" }, + "colorful-winsep.nvim": { "branch": "main", "commit": "cc514e64dd9b33f56d28fbd977ebd8397892e349" }, + "conform.nvim": { "branch": "master", "commit": "8314f4c9e205e7f30b62147069729f9a1227d8bf" }, "crates.nvim": { "branch": "main", "commit": "afcd1cc3eeceb5783676fc8464389b9216a29d05" }, "css-vars.nvim": { "branch": "main", "commit": "0615782c320f729b04d9c51a8a61fb498ee4234a" }, "csvview.nvim": { "branch": "main", "commit": "da4106db5c44bfdccd0f76142c0f2740bcae8e5c" }, @@ -56,7 +57,7 @@ "mini.icons": { "branch": "main", "commit": "ff2e4f1d29f659cc2bad0f9256f2f6195c6b2428" }, "mini.splitjoin": { "branch": "main", "commit": "9fcd8856efb95a505090c3225726466494076127" }, "mini.surround": { "branch": "main", "commit": "88c52297ed3e69ecf9f8652837888ecc727a28ee" }, - "neoconf.nvim": { "branch": "main", "commit": "7568d2bdea8fd8b0162239174ece804903218f86" }, + "neoconf.nvim": { "branch": "main", "commit": "f063e7357b74162f0299e3a731fbb2e66fd79f6b" }, "neocord": { "branch": "main", "commit": "2ebf3792a8100376bb65fd66d5dbf60f50af7529" }, "neogen": { "branch": "main", "commit": "b2e78708876f4da507839726816010a68e33fec8" }, "neogit": { "branch": "master", "commit": "e106a39a8a37a9420f374545c876f8b52baf1c80" }, @@ -65,7 +66,7 @@ "neotest-gtest": { "branch": "main", "commit": "b66f1d33cbf3b37b9803e6bc7ef47ac60eba86b1" }, "neotest-python": { "branch": "master", "commit": "b0d3a861bd85689d8ed73f0590c47963a7eb1bf9" }, "neotest-vim-test": { "branch": "master", "commit": "75c4228882ae4883b11bfce9b8383e637eb44192" }, - "nightfly.nvim": { "branch": "master", "commit": "42f6c21fbe90fcf96b9139f3b970cc6415b73382" }, + "nightfly.nvim": { "branch": "master", "commit": "24f2c71dcdbf1adf4656812a62247d101b7a4974" }, "nightfox.nvim": { "branch": "main", "commit": "ba47d4b4c5ec308718641ba7402c143836f35aa9" }, "noice.nvim": { "branch": "main", "commit": "7bfd942445fb63089b59f97ca487d605e715f155" }, "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, diff --git a/lua/config/options.lua b/lua/config/options.lua index b5f5efb..001ee6a 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -34,7 +34,7 @@ vim.opt.showcmd = false vim.opt.showmode = false -- we don't need to see things like -- INSERT -- anymore vim.opt.showtabline = 0 -- disable tabs vim.opt.sidescrolloff = 8 -vim.opt.signcolumn = "auto" -- always show the sign column otherwise it would shift the text each time +vim.opt.signcolumn = "yes:1" -- always show the sign column otherwise it would shift the text each time vim.opt.smartcase = true -- smart case vim.opt.smartindent = true -- make indenting smarter again vim.opt.softtabstop = 4 diff --git a/lua/plugins/colorful-winsep.lua b/lua/plugins/colorful-winsep.lua new file mode 100644 index 0000000..c9352fe --- /dev/null +++ b/lua/plugins/colorful-winsep.lua @@ -0,0 +1,9 @@ +return { + "nvim-zh/colorful-winsep.nvim", + event = { "WinLeave" }, + opts = { + animate = { + enabled = false, + }, + }, +} diff --git a/lua/plugins/conform.lua b/lua/plugins/conform.lua index 7620865..66edc97 100644 --- a/lua/plugins/conform.lua +++ b/lua/plugins/conform.lua @@ -1,6 +1,7 @@ local js = { "biome", "biome-check" } local html = { "djlint", "rustywind" } local makrdown = { "cbfmt", "markdownlint", "markdown-toc" } +local shell = { "shfmt" } return { "stevearc/conform.nvim", @@ -21,7 +22,7 @@ return { ["_"] = { "trim_whitespace" }, ["*"] = { "injected" }, asm = { "asmfmt" }, - bash = { "shfmt" }, + bash = shell, c = { "clang-format" }, cmake = { "cmake_format" }, cpp = { "clang-format" }, @@ -45,6 +46,7 @@ return { rest = { "kulala" }, rust = { "rustfmt", "leptosfmt", "yew-fmt" }, scss = { "prettier" }, + sh = shell, sql = { "sqruff" }, toml = { "taplo" }, typescript = js, @@ -52,6 +54,7 @@ return { typst = { "typstyle" }, vimwiki = makrdown, yaml = { "yamlfmt" }, + zsh = shell, }, formatters = { sqruff = { diff --git a/lua/plugins/neocord.lua b/lua/plugins/neocord.lua index d3b5e69..36abf13 100644 --- a/lua/plugins/neocord.lua +++ b/lua/plugins/neocord.lua @@ -1,5 +1,6 @@ return { "IogaMaster/neocord", + enabled = false, event = "VeryLazy", opts = { blacklist = {}, -- A list of strings or Lua patterns that disable Rich Presence if the current file name, path, or workspace matches diff --git a/lua/plugins/snacks.lua b/lua/plugins/snacks.lua index 8ade3dd..0889bd8 100644 --- a/lua/plugins/snacks.lua +++ b/lua/plugins/snacks.lua @@ -45,7 +45,10 @@ return { enabled = true, format = "file", layout = { - preset = "telescope", + cycle = true, + preset = function() + return vim.o.columns >= 120 and "telescope" or "vertical" + end, }, matcher = { frecency = true, @@ -118,21 +121,28 @@ return { { "", function() - Snacks.picker.files() + Snacks.picker.files({ + hidden = true, + }) end, desc = "Find Files", }, { "pf", function() - Snacks.picker.files() + Snacks.picker.files({ + hidden = true, + ignored = true, + }) end, desc = "Find Files", }, { "ps", function() - Snacks.picker.grep() + Snacks.picker.grep({ + hidden = true, + }) end, desc = "Grep", }, diff --git a/spell/lv.utf-8.add b/spell/lv.utf-8.add index aff86e2..8bdf77f 100644 --- a/spell/lv.utf-8.add +++ b/spell/lv.utf-8.add @@ -686,3 +686,6 @@ sensitīvi Modularitāte neļauj parametrizēti +konceptuāli +augustā +kubitu diff --git a/spell/lv.utf-8.add.spl b/spell/lv.utf-8.add.spl index d69367b2f951d3d50a3eaccbbde00b37a2e93037..7863103ce3e9fe1453dcf95533e3068b4bd4e12e 100644 GIT binary patch delta 1869 zcmXw4U2Icj7(VYg?di|fZLD3{*0Jca!N$*k;oOfA7q-NynY+NDAR=e$p>}Q8=JZFh z#NbJQfT$O~gsAL-MIupR6lGutF&f+8G%?-~Vw}bsxgonTMiVc@=lwdG^y_!d_x?QZ z^StlZ3xn4O>-If0kpYd^^gq7t&BJSpxs7h~esegmoHkN( zq37P`mF!4q(w ztQqkgu*H6e&((AV&ax`pGsNYZ{dAh!YkMO2k;AA+7 z<=ryPA_!e7Qvs$G`U+24Pf?$Cura%ne6jW+s&J)t9Qf-(Euf)0)Jv!M`Ou!`sabeg zh-*F`KLXYqg~8X$S3<+l16G+_O5;@?R17}<# zk*}y2wmy%;gM6`W*Vs}9v=ku6Wh$8#3b`Y=hqG8F^Rg@AU8JmQvd_Ryf*DhBJy|B( zm_g~mYaFYeXu6Y!vZAUs!E{q`?LEt{)o-Nhe6fDK#x%0yz%E0zx7EK1--nLb$4)QF}KI*V2l_8GrOQ?Ly?<@gZF-^wpGc5c{VvbrE)Mf+jybzrID(xMarNAI%1_@Nm>YVT2a`mo(R3L2((GXmn20>(LQ*O zhr%6nf)9pY$H4v?o}gR2B{D^ivKxtRUP=QQN_flxZj1!JfOg)|g{r3ul%kUA2(z2N ziF8sU-;Erl=lJEO&0*8X13(U_i~(Ev2h1%rZJ@1uqiLsJYw&7Q7maf``Us|dJo;Yv zUP|>VW36_*{~G@l?Q0)Rf!M)}$f)k9!MG^A;tDXt99!RgsG|%dqHnd0{nyffD&(SD zb_(@H*^R{w%XW09KsjU1Dd9M->hboL@H-Eqv_b%CyImm&0U_)Xf4~0WA$J}&B4`rQ zCiVP0rJ%aeZvl(C5-?CQ1vR$-Y!;SPx%5@;Y`#iw@z2dY$C{-pVgIM4#F2Is)s1LE zk4u+%PDuhwrPYRW(ugJ42zlPmT_tB6&(h4|XWq=~4(d8xLiK57W*V-J{EDGLOHDYU z$*l}p*=^~jEPvcGJlmGiG5^}XC4}+4j zl1?yGaO(eh5t!ntc+Wl;Q74(ERe`9ei=S=X)wP^h3nnN4D3xJaWl>i+z9f;`j7V3sIG~? z$F}v{bWol5sx55CRZ|!PuPU<)p3)vs(1OJsJ`;=KPv=ss&$m$+3Etq}W1Cv`T-N1M M@s+A#IogBI{|$P%Z2$lO delta 1900 zcmYjRTWl0%6rMA)_wBYU+xrSiLn+Ipl!90afr2#w)3Pc-qXu-!4C{8U&TLn+iO})F zi$NX^sJz(_L&(M|qLGB!gk~Ex8o&#QF+ONQ`r->-BE|svooO*P>CC_LpUZc?^PTfa z-#dNvkMAC~i)J?4`;Vf;HlM36Xc1EA*%YOT6eUqOe^Top>fsBXBauBBGRdF{Zq&;> z=-oz__!aM(*j$zhl%pb^6{^YYO`h@E@Y>{COPAU3^#^CNS|(45$Kf-+5vp*=|Dfu* z!%6?j;I%QDfRpDGkNZt}p6C2uQkFjqY@@CGYal_B91ph9Am1Mxpa_?P>((Y6EnO(l zL4edLizm{m4&wtU+GlA^QPo+*)CJ0I{sw;MITkuV4Qz#$Q-a?Lb;J{SKy@fXV`RIa zmHw*x_Fd=iLa!myQ{e&sUQE|Y~3>o6CGcDn~Xys+H$e@yZG}+e{)ioQiKQ_R`P`R47b+r3_WI8 zuqMU7nvMGHty2!p!Er}R*|Tm8Q?1}~A78BBFgTe*{*s%&?9)l{UQGjTe*urAEvGSj zi_}y_&Vo~dX?qMcT_aOF2ns?~?rj)u`pSkFL?=e2nu!26|iw(QN-dhFu zNHIRHUo^P)vgCPFs8SM+XQU`Pu}f}2sf9G&E-(lWC7HJnP+DIA^^zpeS$a@6 z(^=pRcJsT7`WvT310~O)Os?Qk2KZU;zI4_IFh8ji@E2|ndXcN>-qneIr z3)PC41lQe?g8Nz3YiN@Rs^+^8*jjO^@I1=n(WUE$WK7a6s!L5JCnjbk1B5gVo{ z-r2Zs$2uF`6_5sE)0K))3NVvdd_sX6EmVcE!asnYuv8)P;S#2`jIx1d8GqlnoWgv& z@kQFr<)&5Zy|-*2DuQ;c$8=>8<`CqN$rg&GaxG+}L}WKI*?iH0m;;^sb<=t^{1fPDKN?5mR>BQZ7ug8<mp5eF2}I+NC{6l(93@vQ|EX~>qpp5H(C=NQ4uZdf79J|iCRSzT0=_Y zE>p%^+S>c7j@wHE*CJ~%@qKKo7D_l=MxoLvjLt1bcB~=O(5K5L;A3qY=sCXB*54e> zs8|ll-(?v3U$^L}^x;*Gwztx^ysCZ4(hC!aZn%g&Ne8A$rV$qvU@T>`eM9F=YGMB7 zl_5>Q-ChAV0v=o`4DhGz1M~~uX>acP!Ge%svBpMd*{(Qu&u@KC_lOJ~Kqf4b?I5yF zxn0qEcqqR1p>q}xdfzjJ5d-XrY+i89a`=_?0Aarl3wH%BY(FnVxXa