diff --git a/emacs-init-el b/emacs-init-el index 5f6c7b7..cf862a9 100644 --- a/emacs-init-el +++ b/emacs-init-el @@ -41,6 +41,11 @@ (use-package helm-tramp :ensure t) +(use-package unicode-fonts + :ensure t + :init (unicode-fonts-setup) + ) + (use-package company :ensure t :init (global-company-mode) @@ -117,13 +122,23 @@ ;; If there is more than one, they won't work right. '(ansi-color-faces-vector [default default default italic underline success warning error]) + '(ansi-color-names-vector + (vector "#c5c8c6" "#cc6666" "#b5bd68" "#f0c674" "#81a2be" "#b294bb" "#8abeb7" "#373b41")) + '(ansi-term-color-vector + [unspecified "#000000" "#ff6c60" "#a8ff60" "#ffffb6" "#96cbfe" "#ff73fd" "#96cbfe" "#b5b3aa"]) + '(custom-safe-themes + (quote + ("8db4b03b9ae654d4a57804286eb3e332725c84d7cdab38463cb6b97d5762ad26" "50ff65ab3c92ce4758cc6cd10ebb3d6150a0e2da15b751d7fbee3d68bba35a94" "d5b121d69e48e0f2a84c8e4580f0ba230423391a78fcb4001ccb35d02494d79e" "5cd0afd0ca01648e1fff95a7a7f8abec925bd654915153fb39ee8e72a8b56a1f" default))) + '(fci-rule-color "#373b41") + '(flycheck-color-mode-line-face-to-color (quote mode-line-buffer-id)) + '(frame-background-mode (quote dark)) '(linum-format "%3i") '(nrepl-message-colors (quote ("#336c6c" "#205070" "#0f2050" "#806080" "#401440" "#6c1f1c" "#6b400c" "#23733c"))) '(package-selected-packages (quote - (distinguished-theme alect-themes bubbleberry-theme go-snippets company-go cyberpunk-theme dad-joke darkane-theme darkmine-theme helm-themes markdown-mode anti-zenburn-theme helm-tramp magit use-package powerline paradox helm))) + (roguel-ike helm-unicode unicode-fonts color-theme-sanityinc-tomorrow color-theme-solarized distinguished-theme alect-themes bubbleberry-theme go-snippets company-go cyberpunk-theme dad-joke darkane-theme darkmine-theme helm-themes markdown-mode anti-zenburn-theme helm-tramp magit use-package powerline paradox helm))) '(paradox-github-token t) '(pdf-view-midnight-colors (quote ("#232333" . "#c7c7c7"))) '(powerline-color1 "#3d3d68") @@ -292,3 +307,11 @@ (add-hook 'prog-mode-hook #'add-fira-code-symbol-keywords) +(if window-system + (load-theme 'anti-zenburn t) + (load-theme 'solarized t)) + + ; screen size is off for some reason uless this is toggled on and off +(menu-bar-mode) +(menu-bar-mode) + diff --git a/fonts/Quivira.otf b/fonts/Quivira.otf new file mode 100644 index 0000000..8064cae Binary files /dev/null and b/fonts/Quivira.otf differ diff --git a/quickterm.sh b/quickterm.sh new file mode 100755 index 0000000..8bbcba0 --- /dev/null +++ b/quickterm.sh @@ -0,0 +1,5 @@ +#!/bin/zsh +set -A FONTS "MicroKnight NF,Luculent" "Topaza500a1000a2000 NF" "mOsOul NF" "P0TForPowerline NF:style=NOoDLE" "monoOne:style=Medium" "Px437_Kaypro2k NF:style=Regular" "Topaza600a1200a400 NF" "FantasqueSansMono Nerd Font-16" "Px437_CompaqThin_8x16 NF:style=Thin\_8x16NerdFontCo" "MonofurForPowerline Nerd Font-16" "Px437_AmstradPC1512 NF:style=2y" "Monoid Nerd Font:style=Retina" "Px437_AMI_BIOS NF:style=2y" "Px437_IBM_CGAthin NF:style=Medium" "Px437_ATI_8x8 NF:style=2y" +FONT=$FONTS[${RANDOM}%16] +st-aardbei -f $FONT:pixelsize=16:antialias=true:autohint=true & + diff --git a/zshrc b/zshrc index 5b5cb82..b11d664 100644 --- a/zshrc +++ b/zshrc @@ -1,3 +1,5 @@ +[[ $TERM == "dumb" ]] && unsetopt zle && PS1='$ ' && return + echo "Loading zgen..." source ~/bin/zgen/zgen.zsh @@ -28,6 +30,9 @@ export PATH=$HOME/bin:/usr/local/bin:$PATH export PAGER=most alias t=todo.sh export EDITOR=mg +export VISUAL=emacs +export PAGER=most +export TERMINAL=${HOME}/bin/quickterm.sh autoload insert-composed-char zle -N insert-composed-char