oop
This commit is contained in:
parent
9b7ee06ba3
commit
de1f8fb95b
|
@ -23,7 +23,7 @@
|
|||
;;
|
||||
(setq doom-font (font-spec :family "FiraCode Nerd Font" :size 11 :weight 'semi-light)
|
||||
doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 11 :weight 'semi-light)
|
||||
doom-variable-pitch-font (font-spec :family "Fira" :size 15))
|
||||
doom-variable-pitch-font (font-spec :family "Fira Sans" :size 15))
|
||||
;;
|
||||
;; If you or Emacs can't find your font, use 'M-x describe-font' to look them
|
||||
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
|
||||
|
|
|
@ -34,7 +34,7 @@ The provided default ~config.el~
|
|||
;;
|
||||
(setq doom-font (font-spec :family "FiraCode Nerd Font" :size 11 :weight 'semi-light)
|
||||
doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 11 :weight 'semi-light)
|
||||
doom-variable-pitch-font (font-spec :family "Fira" :size 15))
|
||||
doom-variable-pitch-font (font-spec :family "Fira Sans" :size 15))
|
||||
;;
|
||||
;; If you or Emacs can't find your font, use 'M-x describe-font' to look them
|
||||
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
|
||||
|
|
|
@ -93,32 +93,32 @@ with lib;
|
|||
# Selenize it
|
||||
colors = {
|
||||
focused = {
|
||||
border = "#75b938";
|
||||
background = "#184956";
|
||||
text = "#adbcbc";
|
||||
indicator = "#84c747";
|
||||
childBorder = "#75b938";
|
||||
border = "75b938";
|
||||
background = "184956";
|
||||
text = "adbcbc";
|
||||
indicator = "84c747";
|
||||
childBorder = "75b938";
|
||||
};
|
||||
focusedInactive = {
|
||||
border = "#41c7b9";
|
||||
border = "41c7b9";
|
||||
background = "#103c48";
|
||||
text = "#adbcbc";
|
||||
indicator = "#53d6c7";
|
||||
childBorder = "#41c7b9";
|
||||
text = "adbcbc";
|
||||
indicator = "53d6c7";
|
||||
childBorder = "41c7b9";
|
||||
};
|
||||
unfocused = {
|
||||
border = "#72898f";
|
||||
background = "#103c48";
|
||||
text = "#72898f";
|
||||
indicator = "#adbcbc";
|
||||
childBorder = "#72898f";
|
||||
border = "72898f";
|
||||
background = "103c48";
|
||||
text = "72898f";
|
||||
indicator = "adbcbc";
|
||||
childBorder = "72898f";
|
||||
};
|
||||
urgent = {
|
||||
border = "#f275be";
|
||||
background = "#184956";
|
||||
text = "#fa5750";
|
||||
indicator = "#fa5750";
|
||||
childBorder = "#f275be";
|
||||
border = "f275be";
|
||||
background = "184956";
|
||||
text = "fa5750";
|
||||
indicator = "fa5750";
|
||||
childBorder = "f275be";
|
||||
};
|
||||
};
|
||||
# Setup keybindings
|
||||
|
|
Loading…
Reference in New Issue