diff --git a/.config/emacs/config.el b/.config/emacs/config.el index 02169ed..7361619 100644 --- a/.config/emacs/config.el +++ b/.config/emacs/config.el @@ -500,10 +500,6 @@ doom-modeline-persp-name t ;; adds perspective name to modeline doom-modeline-persp-icon t)) ;; adds folder icon next to persp name -(add-to-list 'load-path "/usr/local/share/emacs/site-lisp/mu4e") -(require 'mu4e) -(load-file "~/nc/emacs-stuff/email-mu4e.el") - (use-package neotree :config (setq neo-smart-open t @@ -527,14 +523,14 @@ (use-package org-bullets) (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))) - (custom-set-faces - '(org-level-1 ((t (:inherit outline-1 :height 1.7)))) - '(org-level-2 ((t (:inherit outline-2 :height 1.6)))) - '(org-level-3 ((t (:inherit outline-3 :height 1.5)))) - '(org-level-4 ((t (:inherit outline-4 :height 1.4)))) - '(org-level-5 ((t (:inherit outline-5 :height 1.3)))) - '(org-level-6 ((t (:inherit outline-5 :height 1.2)))) - '(org-level-7 ((t (:inherit outline-5 :height 1.1))))) +(custom-set-faces + '(org-level-1 ((t (:inherit outline-1 :height 1.7)))) + '(org-level-2 ((t (:inherit outline-2 :height 1.6)))) + '(org-level-3 ((t (:inherit outline-3 :height 1.5)))) + '(org-level-4 ((t (:inherit outline-4 :height 1.4)))) + '(org-level-5 ((t (:inherit outline-5 :height 1.3)))) + '(org-level-6 ((t (:inherit outline-5 :height 1.2)))) + '(org-level-7 ((t (:inherit outline-5 :height 1.1))))) (require 'org-tempo) diff --git a/.config/qtile/README.org b/.config/qtile/README.org index c2a8f5d..9e36414 100644 --- a/.config/qtile/README.org +++ b/.config/qtile/README.org @@ -142,7 +142,8 @@ keys = [ # The essentials Key([mod], "Return", lazy.spawn(myTerm), desc="Terminal"), Key([mod, "shift"], "Return", lazy.spawn("rofi -show drun"), desc='Run Launcher'), - Key([mod], "b", lazy.spawn(myBrowser), desc='Web browser'), + Key([mod], "w", lazy.spawn(myBrowser), desc='Web browser'), + Key([mod], "b", lazy.hide_show_bar(position='all'), desc="Toggles the bar to show/hide"), Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"), Key([mod, "shift"], "c", lazy.window.kill(), desc="Kill focused window"), Key([mod, "shift"], "r", lazy.reload_config(), desc="Reload the config"), diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 955e049..06f4876 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -66,7 +66,8 @@ keys = [ # The essentials Key([mod], "Return", lazy.spawn(myTerm), desc="Terminal"), Key([mod, "shift"], "Return", lazy.spawn("rofi -show drun"), desc='Run Launcher'), - Key([mod], "b", lazy.spawn(myBrowser), desc='Web browser'), + Key([mod], "w", lazy.spawn(myBrowser), desc='Web browser'), + Key([mod], "b", lazy.hide_show_bar(position='all'), desc="Toggles the bar to show/hide"), Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"), Key([mod, "shift"], "c", lazy.window.kill(), desc="Kill focused window"), Key([mod, "shift"], "r", lazy.reload_config(), desc="Reload the config"),