Compare commits

...

2 Commits

Author SHA1 Message Date
e50f1583f2 Stop using firacode mode on linux due to font issues. 2021-08-17 18:40:44 -05:00
00870a55b8 Move to bottom bar. 2021-08-17 18:40:29 -05:00
2 changed files with 5 additions and 4 deletions

View File

@ -209,7 +209,7 @@ awful.screen.connect_for_each_screen(function(s)
} }
-- Create the wibox -- Create the wibox
s.mywibox = awful.wibar({ position = "top", screen = s }) s.mywibox = awful.wibar({ position = "bottom", screen = s })
-- Add widgets to the wibox -- Add widgets to the wibox
s.mywibox:setup { s.mywibox:setup {

View File

@ -19,6 +19,9 @@
;; set default font for macos ;; set default font for macos
(when (eq system-type 'darwin) (when (eq system-type 'darwin)
(use-package fira-code-mode
:custom (fira-code-mode-disabled-ligatures '("[]" "#{" "#(" "#_" "#_(" "x")) ;; List of ligatures to turn off
:config (global-fira-code-mode)) ;; Enables fira-code-mode globally
(set-frame-font "fira code 12") (set-frame-font "fira code 12")
(add-to-list 'default-frame-alist '(font . "fira code 12" )) (add-to-list 'default-frame-alist '(font . "fira code 12" ))
(set-face-attribute 'default t :font "fira code 12" )) (set-face-attribute 'default t :font "fira code 12" ))
@ -58,9 +61,7 @@
(yas-minor-mode-on) (yas-minor-mode-on)
(yas-global-mode 1)) (yas-global-mode 1))
(use-package fira-code-mode
:custom (fira-code-mode-disabled-ligatures '("[]" "#{" "#(" "#_" "#_(" "x")) ;; List of ligatures to turn off
:config (global-fira-code-mode)) ;; Enables fira-code-mode globally
;; lets you find all instance of string @ point with C-; ;; lets you find all instance of string @ point with C-;
(use-package iedit (use-package iedit