diff --git a/files/.bashrc b/files/.bashrc index e2eae9a..87a88c4 100644 --- a/files/.bashrc +++ b/files/.bashrc @@ -10,7 +10,6 @@ DIR="\[\033[1;94m\]\w\[\033[m\]" export PS1="${HOST} ${DIR}${GIT} ${ICON} " # ============================== Aliases -#alias emacsnw="TERM=xterm-direct emacsclient -c -nw -a 'emacs -nw'" alias emacsnw="TERM=xterm-direct emacs -nw" alias c='clear' diff --git a/files/.config/i3/config b/files/.config/i3/config index e3051bb..976d0f8 100644 --- a/files/.config/i3/config +++ b/files/.config/i3/config @@ -14,9 +14,7 @@ workspace_layout stacking bindsym $mod+Return exec --no-startup-id alacritty bindsym $mod+Ctrl+Return exec --no-startup-id xterm bindsym $mod+d exec --no-startup-id dmenu_run -#bindsym $mod+e exec --no-startup-id "emacsclient -c" -bindsym $mod+e exec --no-startup-id "emacs" -bindsym $mod+Ctrl+e exec --no-startup-id "emacsclient --eval '(emacs-everywhere)'" +bindsym $mod+e exec --no-startup-id emacs bindsym $mod+Shift+s exec --no-startup-id "flameshot gui" ### keybinds for moving windows diff --git a/files/.zshrc b/files/.zshrc index e32649a..4d017d8 100644 --- a/files/.zshrc +++ b/files/.zshrc @@ -44,7 +44,6 @@ export PROMPT="${NAME}${DIR}${GIT} ${ICON}%{$reset_color%} " zstyle ':vcs_info:git:*' formats '|%b ' # ============================== Aliases -#alias emacsnw="TERM=alacritty-direct emacsclient -nw -a 'emacs -nw'" alias emacsnw="TERM=alacritty-direct emacs -nw" if command -v rg &> /dev/null; then diff --git a/files/init.el b/files/init.el index 20c9a4f..5aac07c 100644 --- a/files/init.el +++ b/files/init.el @@ -66,8 +66,6 @@ (set-face-attribute 'default nil :font "SFMono Nerd Font Mono" :height 110) (set-fontset-font t 'unicode "Source Code Pro" nil 'prepend) (set-fontset-font t 'unicode "Noto Color Emoji" nil 'append) -; fonts for daemon -;(add-to-list 'default-frame-alist '(font . "SFMono Nerd Font Mono")) ;; Make ESC quit prompts (global-set-key (kbd "") 'keyboard-escape-quit) @@ -151,12 +149,17 @@ (doom-modeline-mode 1) (setq doom-modeline-indent-info t)) -;; show icons in daemonized emacs -;;(defun enable-doom-modeline-icons (_frame) -;; (setq doom-modeline-icon t)) -;; -;;(add-hook 'after-make-frame-functions -;; #'enable-doom-modeline-icons) +;; Cool dashboard +(use-package dashboard + :straight t + :config + (dashboard-setup-startup-hook) + (setq dashboard-banner-logo-title "Welcome back, Marc." + dashboard-center-content t + dashboard-startup-banner 'logo + dashboard-items '((recents . 5) + (agenda . 5))) + (set-face-attribute 'dashboard-banner-logo-title nil :font "Product Sans" :weight 'bold :height 1.5 :inherit 'default)) ;; show color codes (use-package rainbow-mode @@ -581,15 +584,6 @@ :config (setq graphviz-dot-indent-width 4)) -;; use my beauty everywhere -(use-package emacs-everywhere - :straight t - :hook - (emacs-everywhere-mode . (lambda () (set-input-method "math"))) - :config - (setq emacs-everywhere-markdown-apps nil - emacs-everywhere-markdown-windows nil)) - (use-package hl-todo :straight t :hook