From 9254d69403f63bfa56b89e732cd079d8b82e6020 Mon Sep 17 00:00:00 2001 From: talksik Date: Tue, 31 Oct 2023 09:14:03 -0700 Subject: [PATCH] boom --- .config/i3/config | 3 ++- .config/nvim/after/plugin/lualine.lua | 14 ++++++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.config/i3/config b/.config/i3/config index 70a0bf8..a0e3e5e 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -9,7 +9,8 @@ # # Please see https://i3wm.org/docs/userguide.html for a complete reference! -set $mod Mod4 +# Set mod key (Mod1=, Mod4=) +set $mod Mod1 # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. diff --git a/.config/nvim/after/plugin/lualine.lua b/.config/nvim/after/plugin/lualine.lua index afd4103..87387c0 100644 --- a/.config/nvim/after/plugin/lualine.lua +++ b/.config/nvim/after/plugin/lualine.lua @@ -1,7 +1,7 @@ require('lualine').setup { options = { icons_enabled = true, - theme = 'material', + theme = 'codedark', }, sections = { lualine_a = { @@ -19,13 +19,23 @@ require('lualine').setup { { 'diff' }, + { + 'diagnostics' + }, }, -- lualine_x = { -- }, -- lualine_y = { -- }, lualine_z = { - 'filesize' + { + 'datetime', + -- options: default, us, uk, iso, or your own format string ("%H:%M", etc..) + style = '%H:%M:%S', + }, + { + 'filesize' + } } } }