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)
|
(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-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
|
;; 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
|
;; 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)
|
(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-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
|
;; 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
|
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
|
||||||
|
|
|
@ -93,32 +93,32 @@ with lib;
|
||||||
# Selenize it
|
# Selenize it
|
||||||
colors = {
|
colors = {
|
||||||
focused = {
|
focused = {
|
||||||
border = "#75b938";
|
border = "75b938";
|
||||||
background = "#184956";
|
background = "184956";
|
||||||
text = "#adbcbc";
|
text = "adbcbc";
|
||||||
indicator = "#84c747";
|
indicator = "84c747";
|
||||||
childBorder = "#75b938";
|
childBorder = "75b938";
|
||||||
};
|
};
|
||||||
focusedInactive = {
|
focusedInactive = {
|
||||||
border = "#41c7b9";
|
border = "41c7b9";
|
||||||
background = "#103c48";
|
background = "#103c48";
|
||||||
text = "#adbcbc";
|
text = "adbcbc";
|
||||||
indicator = "#53d6c7";
|
indicator = "53d6c7";
|
||||||
childBorder = "#41c7b9";
|
childBorder = "41c7b9";
|
||||||
};
|
};
|
||||||
unfocused = {
|
unfocused = {
|
||||||
border = "#72898f";
|
border = "72898f";
|
||||||
background = "#103c48";
|
background = "103c48";
|
||||||
text = "#72898f";
|
text = "72898f";
|
||||||
indicator = "#adbcbc";
|
indicator = "adbcbc";
|
||||||
childBorder = "#72898f";
|
childBorder = "72898f";
|
||||||
};
|
};
|
||||||
urgent = {
|
urgent = {
|
||||||
border = "#f275be";
|
border = "f275be";
|
||||||
background = "#184956";
|
background = "184956";
|
||||||
text = "#fa5750";
|
text = "fa5750";
|
||||||
indicator = "#fa5750";
|
indicator = "fa5750";
|
||||||
childBorder = "#f275be";
|
childBorder = "f275be";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
# Setup keybindings
|
# Setup keybindings
|
||||||
|
|
Loading…
Reference in New Issue