diff --git a/.emacs.d/init.el b/.emacs.d/init.el index ef4f1df..caf334a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -12,6 +12,7 @@ (require 'use-package)) (setq use-package-always-ensure t) (setq native-comp-async-report-warnings-errors 'silent) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; APPEARANCE & THEMES ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -20,8 +21,9 @@ (add-to-list 'default-frame-alist '(alpha . (95 . 95))) (use-package doom-themes - :config - (load-theme 'doom-tokyo-night t)) + :ensure t) +(load-theme 'doom-palenight t) +;;(load-theme 'modus-vivendi-tritanopia t) (menu-bar-mode -1) ;;(tab-bar-mode -1) @@ -37,7 +39,7 @@ (setq ring-bell-function 'ignore) -(set-face-attribute 'default nil :font "Cozette-15") +;;(set-face-attribute 'default nil :font "Cozette-15") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; UI & INTERFACE ;; @@ -160,6 +162,9 @@ ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. + '(custom-safe-themes + '("0325a6b5eea7e5febae709dab35ec8648908af12cf2d2b569bedc8da0a3a81c1" + default)) '(package-selected-packages '(centaur-tabs company consult dired-filter dired-sidebar doom-modeline doom-themes elcord evil fennel-mode diff --git a/.zshrc b/.zshrc index af0faa8..5ebca2c 100644 --- a/.zshrc +++ b/.zshrc @@ -1,35 +1,24 @@ -#!/usr/bin/zsh -# _ -# _______| |__ _ __ ___ -# |_ / __| '_ \| '__/ __| -# _ / /\__ \ | | | | | (__ -#(_)___|___/_| |_|_| \___| -# -#Coast's ~/.zshrc +#!/bin/sh +#historie HISTFILE=$HOME/.cache/zsh/history SAVEHIST=100000000 HISTSIZE=$SAVEHIST setopt appendhistory -#tab completion +#faediggoerelse autoload -U compinit zstyle ':completion:*' menu select zmodload zsh/complist compinit -_comp_options+=(globdots) -#oh my zsh -ZSH_THEME="gentoo" -plugins=(git) -export ZSH="$HOME/.oh-my-zsh" -source $ZSH/oh-my-zsh.sh +comp_options+=(globdots) +#ohmyzsh +ZSH_THEME="gentoo" && export ZSH=$HOME/.oh-my-zsh && source $ZSH/oh-my-zsh.sh #source -source "$HOME/.config/shell/aliases" -source "$HOME/.config/shell/exports" -source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh -fpath=(/usr/share/zsh/site-functions $fpath) -source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh -#colors -autoload -U colors && colors -setopt prompt_subst +source "$HOME/.config/shell/aliases" && source "$HOME/.config/shell/exports" && source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh && fpath=(/usr/share/zsh/site-functions $fpath) && source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +#evaluere +eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" +#farver +autoload -U colors && colors && setopt prompt_subst #prompt -[ "$(id -u)" = 0 ] && PS1ICON="#" || PS1ICON='%' -PROMPT='%{$(echo -e "\e[38;2;254;128;25m")%}[%{$(echo -e "\e[38;2;235;219;178m")%}%n%{$(echo -e "\e[38;2;200;200;200m")%}@%{$(echo -e "\e[38;2;131;165;152m")%}coast %{$(echo -e "\e[38;2;235;219;178m")%}%~%{$(echo -e "\e[38;2;254;128;25m")%}]%$PS1ICON%{$(echo -e "\e[0m")%} ' \ No newline at end of file +[ "$(id -u)" = 0 ] && PS1ICON="#" || PS1ICON='%' && PROMPT='%{$(echo -e "\e[38;2;254;128;25m")%}[%{$(echo -e "\e[38;2;235;219;178m")%}%n%{$(echo -e "\e[38;2;200;200;200m")%}@%{$(echo -e "\e[38;2;131;165;152m")%}coast %{$(echo -e "\e[38;2;235;219;178m")%}%~%{$(echo -e "\e[38;2;254;128;25m")%}]%$PS1ICON%{$(echo -e "\e[0m")%} ' + +#coast's zshrc :3