From 608c936462d63bee2073d666b4599f7ce62a22a6 Mon Sep 17 00:00:00 2001 From: Ian Keane Date: Wed, 18 Sep 2024 22:34:19 -0400 Subject: [PATCH] Add notes, clean up lua configs --- dotfiles.org | 36 ++++++++++++++---------------------- emacs-config.org | 2 ++ 2 files changed, 16 insertions(+), 22 deletions(-) diff --git a/dotfiles.org b/dotfiles.org index a87d1f8..62ec04c 100644 --- a/dotfiles.org +++ b/dotfiles.org @@ -123,24 +123,15 @@ set-option -g window-status-format '#{window_name}' ** TODO Tmuxinator * Wezterm #+begin_src lua :tangle ~/.config/wezterm/wezterm.lua -local wezterm = require 'wezterm' -local config = {} + local wezterm = require 'wezterm' + local config = {} --- config.color_scheme = 'OceanicNext (base16)' --- config.color_scheme = 'Wzoreck (Gogh)' --- config.color_scheme = 'Whimsy' --- config.color_scheme = 'Grey-green --- config.color_scheme = 'Gruvbox light, soft (base16)' --- config.color_scheme = 'Obsidian' + config.color_scheme = 'OceanicNext (base16)' + config.font = wezterm.font 'Deja Vu Sans Mono' + config.font_size = 20 + config.enable_tab_bar = false -config.color_scheme = 'OceanicNext (base16)' - -config.font = wezterm.font 'Deja Vu Sans Mono' -config.font_size = 20 - -config.enable_tab_bar = false - -return config + return config #+end_src * Text Editors ** Helix @@ -201,12 +192,12 @@ audio_output { ** Bluetooth - TODO: evaluate if this can be done differently in nixos #+begin_src lua :tangle /sudo::/etc/wireplumber/bluetooth.lua.d/51-bluez-config.lua -bluez_monitor.properties = { - ["bluez5.enable-sbc-xq"] = true, - ["bluez5.enable-msbc"] = true, - ["bluez5.enable-hw-volume"] = true, - ["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]" -} + bluez_monitor.properties = { + ["bluez5.enable-sbc-xq"] = true, + ["bluez5.enable-msbc"] = true, + ["bluez5.enable-hw-volume"] = true, + ["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]" + } #+end_src * Xorg Config @@ -237,6 +228,7 @@ EndSection ** Taskwarrior - TODO: evaluate if taskwarrior 3 has different settings - TODO: clean up categories +- TODO: configure aws bucket for task warrior #+begin_src ini :tangle ~/.config/task/taskrc data.location=~/.local/share/task hooks.location=~/.config/task/hooks diff --git a/emacs-config.org b/emacs-config.org index 0213b37..fcba40e 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -1602,3 +1602,5 @@ variables and their documentations). - try (add-hook 'magit-post-refresh-hook 'git-gutter+:refresh) - make treemacs enter always open in most recent buffer - add meeting log to reference reaches +- install ini-mode plugin +- install lua-mode plugin