aboutsummaryrefslogtreecommitdiff
path: root/bard-emacs-modules/bard-emacs-ui.el
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2024-09-29 21:53:13 -0400
committerBardofSprites <[email protected]>2024-09-29 21:53:13 -0400
commitd86da14a611d14be0e1dd2b570f07b7c578cb415 (patch)
treec2d42ccd52f25800423eefa84fc45445e553b1d4 /bard-emacs-modules/bard-emacs-ui.el
parentf0fffcceb660b0fd006ca1291d1bd05670002dd7 (diff)
refractor
Diffstat (limited to 'bard-emacs-modules/bard-emacs-ui.el')
-rw-r--r--bard-emacs-modules/bard-emacs-ui.el35
1 files changed, 5 insertions, 30 deletions
diff --git a/bard-emacs-modules/bard-emacs-ui.el b/bard-emacs-modules/bard-emacs-ui.el
index f37d53d..45d6546 100644
--- a/bard-emacs-modules/bard-emacs-ui.el
+++ b/bard-emacs-modules/bard-emacs-ui.el
@@ -47,16 +47,15 @@
:ensure t
:config
(setq spacious-padding-widths
- '( :internal-border-width 30
+ '( :internal-border-width 20
:header-line-width 4
:mode-line-width 6
:tab-width 4
- :right-divider-width 30
- :left-fringe-width 15
- :right-fringe-width 15
+ :right-divider-width 20
+ :left-fringe-width 0
+ :right-fringe-width 0
:scroll-bar-width 0))
- (spacious-padding-mode t)
- )
+ (spacious-padding-mode t))
;; Todo Keywords highlighting, colors defined in bard-emacs-theme.el
(use-package hl-todo
@@ -64,30 +63,6 @@
:init
(global-hl-todo-mode t))
-;; Show avaiable key chords
-(use-package which-key
- :ensure t
- :init
- (which-key-mode 1))
-
-(use-package nerd-icons
- :ensure t)
-
-(use-package nerd-icons-completion
- :ensure t
- :hook (marginalia-mode . nerd-icons-completion-marginalia-setup))
-
-(use-package nerd-icons-corfu
- :ensure t
- :after corfu
- :config
- (add-to-list 'corfu-margin-formatters #'nerd-icons-corfu-formatter))
-
-(use-package nerd-icons-dired
- :ensure t
- :hook
- (dired-mode . nerd-icons-dired-mode))
-
(provide 'bard-emacs-ui)
;;; bard-emacs-ui.el ends here