From cf3072ef1ec9159359b4d0c55dff2287639f993d Mon Sep 17 00:00:00 2001 From: He4eT Date: Fri, 26 Jun 2026 04:12:01 +0200 Subject: [PATCH 1/2] zsh: st: shuffle sections --- fastfetch/st.jsonc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fastfetch/st.jsonc b/fastfetch/st.jsonc index 2fa1b32..daf8af1 100644 --- a/fastfetch/st.jsonc +++ b/fastfetch/st.jsonc @@ -28,20 +28,20 @@ }, "break", { - "type": "battery", - "key": "Battery", + "type": "sound", + "format": "{6} ({4}) [{3}]", }, { "type": "brightness", "key": "Brightness", }, - { - "type": "sound", - "format": "{6} ({4}) [{3}]", - }, { "type": "wifi", "format": "{11} ({7}) [{10} - {4}]", }, + { + "type": "battery", + "key": "Battery", + }, ], } From c3bfa5f11a184fa9634bbf2ec1524ba958c55a13 Mon Sep 17 00:00:00 2001 From: He4eT Date: Fri, 26 Jun 2026 04:12:29 +0200 Subject: [PATCH 2/2] nvim: default indentation --- home/.config/nvim/init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/home/.config/nvim/init.lua b/home/.config/nvim/init.lua index b5dca5f..813f22d 100644 --- a/home/.config/nvim/init.lua +++ b/home/.config/nvim/init.lua @@ -38,6 +38,12 @@ npx @johnnymorganz/stylua-bin ./init.lua -- Enable faster startup by caching compiled Lua modules vim.loader.enable() +-- Indentation +vim.o.expandtab = true +vim.o.tabstop = 2 +vim.o.shiftwidth = 2 +vim.o.softtabstop = 2 + -- Raise a dialog asking if you wish to save the current file(s) vim.o.confirm = true