diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index cb095f5..7d48ad1 100755 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -216,7 +216,7 @@ draw_bold_text_with_bright_colors: true # COLOR SCHEMES schemes: - # Doom One + ### Doom One ### doom-one: &doom-one primary: background: '#282c34' @@ -246,7 +246,7 @@ schemes: cyan: '#46d9ff' white: '#dfdfdf' - # Dracula + ### Dracula ### dracula: &dracula primary: background: '#282a36' @@ -301,7 +301,67 @@ schemes: cyan: '#59dffc' white: '#e6e6d1' - # Colors (Solarized Light) + ### Gruvbox dark ### + gruvbox-dark: &gruvbox-dark + # Default colors + primary: + # hard contrast: background = '0x1d2021' + background: '0x282828' + # soft contrast: background = '0x32302f' + foreground: '0xebdbb2' + + # Normal colors + normal: + black: '0x282828' + red: '0xcc241d' + green: '0x98971a' + yellow: '0xd79921' + blue: '0x458588' + magenta: '0xb16286' + cyan: '0x689d6a' + white: '0xa89984' + + # Bright colors + bright: + black: '0x928374' + red: '0xfb4934' + green: '0xb8bb26' + yellow: '0xfabd2f' + blue: '0x83a598' + magenta: '0xd3869b' + cyan: '0x8ec07c' + white: '0xebdbb2' + + ### Nord ### + nord: &nord + # Default colors + primary: + background: '0x2E3440' + foreground: '0xD8DEE9' + + # Normal colors + normal: + black: '0x3B4252' + red: '0xBF616A' + green: '0xA3BE8C' + yellow: '0xEBCB8B' + blue: '0x81A1C1' + magenta: '0xB48EAD' + cyan: '0x88C0D0' + white: '0xE5E9F0' + + # Bright colors + bright: + black: '0x4C566A' + red: '0xBF616A' + green: '0xA3BE8C' + yellow: '0xEBCB8B' + blue: '0x81A1C1' + magenta: '0xB48EAD' + cyan: '0x8FBCBB' + white: '0xECEFF4' + + ### Solarized Light ### solarized-light: &solarized-light # Default colors primary: @@ -335,7 +395,7 @@ schemes: cyan: '#93a1a1' # base1 white: '#fdf6e3' # base3 - # Colors (Solarized Dark) + ### Solarized Dark ### solarized-dark: &solarized-dark # Default colors primary: @@ -369,7 +429,51 @@ schemes: cyan: '#93a1a1' # base1 white: '#fdf6e3' # base3 -# Choose ONE color scheme from those available in the above list. + ### Tomorrow Night ### + tomorrow-night: &tomorrow-night + # Default colors + primary: + background: '0x1d1f21' + foreground: '0xc5c8c6' + + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: '0x1d1f21' + cursor: '0xffffff' + + # Normal colors + normal: + black: '0x1d1f21' + red: '0xcc6666' + green: '0xb5bd68' + yellow: '0xe6c547' + blue: '0x81a2be' + magenta: '0xb294bb' + cyan: '0x70c0ba' + white: '0x373b41' + + # Bright colors + bright: + black: '0x666666' + red: '0xff3334' + green: '0x9ec400' + yellow: '0xf0c674' + blue: '0x81a2be' + magenta: '0xb77ee0' + cyan: '0x54ced6' + white: '0x282a2e' + +###################################################################### +## SET THEME: Choose ONE color scheme from those in the above list. ## +## ################################################################### +# Available themes are: +# *doom-one +# *dracula +# *gruvbox-dark +# *nord +# *solarized-light +# *solarized-dark +# *tomorrow-night colors: *doom-one # Visual Bell diff --git a/.config/doom/config.el b/.config/doom/config.el index e6ad5c8..effb640 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -84,7 +84,7 @@ :init ;; tweak dashboard config before loading it (setq dashboard-set-heading-icons t) (setq dashboard-set-file-icons t) - (setq dashboard-banner-logo-title "Emacs Is More Than A Text Editor!") + (setq dashboard-banner-logo-title "\nKEYBINDINGS:\nOpen dired file manager (SPC .)\nOpen buffer list (SPC b i)\nFind recent files (SPC f r)\nOpen the eshell (SPC e s)\nToggle big font mode (SPC t b)") ;;(setq dashboard-startup-banner 'logo) ;; use standard emacs logo as banner (setq dashboard-startup-banner "~/.config/doom/doom-emacs-dash.png") ;; use custom image as banner (setq dashboard-center-content nil) ;; set to 't' for centered content @@ -96,7 +96,7 @@ :config (dashboard-setup-startup-hook) (dashboard-modify-heading-icons '((recents . "file-text") - (bookmarks . "book")))) + (bookmarks . "book")))) (setq doom-fallback-buffer "*dashboard*") diff --git a/.config/doom/config.org b/.config/doom/config.org index 4e00ea5..7e304c3 100644 --- a/.config/doom/config.org +++ b/.config/doom/config.org @@ -162,7 +162,7 @@ Emacs Dashboard is an extensible startup screen showing you recent files, bookma :init ;; tweak dashboard config before loading it (setq dashboard-set-heading-icons t) (setq dashboard-set-file-icons t) - (setq dashboard-banner-logo-title "Emacs Is More Than A Text Editor!") + (setq dashboard-banner-logo-title "\nKEYBINDINGS:\nOpen dired file manager (SPC .)\nOpen buffer list (SPC b i)\nFind recent files (SPC f r)\nOpen the eshell (SPC e s)\nToggle big font mode (SPC t b)") ;;(setq dashboard-startup-banner 'logo) ;; use standard emacs logo as banner (setq dashboard-startup-banner "~/.config/doom/doom-emacs-dash.png") ;; use custom image as banner (setq dashboard-center-content nil) ;; set to 't' for centered content @@ -174,7 +174,7 @@ Emacs Dashboard is an extensible startup screen showing you recent files, bookma :config (dashboard-setup-startup-hook) (dashboard-modify-heading-icons '((recents . "file-text") - (bookmarks . "book")))) + (bookmarks . "book")))) #+end_src ** Dashboard in Emacsclient