broke my install :3 time to reinstall

This commit is contained in:
coast 2025-06-04 04:38:36 +03:30
parent 5de5fbf67e
commit 8506753851
2 changed files with 22 additions and 28 deletions

View file

@ -12,6 +12,7 @@
(require 'use-package)) (require 'use-package))
(setq use-package-always-ensure t) (setq use-package-always-ensure t)
(setq native-comp-async-report-warnings-errors 'silent) (setq native-comp-async-report-warnings-errors 'silent)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; APPEARANCE & THEMES ;; ;; APPEARANCE & THEMES ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@ -20,8 +21,9 @@
(add-to-list 'default-frame-alist '(alpha . (95 . 95))) (add-to-list 'default-frame-alist '(alpha . (95 . 95)))
(use-package doom-themes (use-package doom-themes
:config :ensure t)
(load-theme 'doom-tokyo-night t)) (load-theme 'doom-palenight t)
;;(load-theme 'modus-vivendi-tritanopia t)
(menu-bar-mode -1) (menu-bar-mode -1)
;;(tab-bar-mode -1) ;;(tab-bar-mode -1)
@ -37,7 +39,7 @@
(setq ring-bell-function 'ignore) (setq ring-bell-function 'ignore)
(set-face-attribute 'default nil :font "Cozette-15") ;;(set-face-attribute 'default nil :font "Cozette-15")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; UI & INTERFACE ;; ;; UI & INTERFACE ;;
@ -160,6 +162,9 @@
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance. ;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right. ;; If there is more than one, they won't work right.
'(custom-safe-themes
'("0325a6b5eea7e5febae709dab35ec8648908af12cf2d2b569bedc8da0a3a81c1"
default))
'(package-selected-packages '(package-selected-packages
'(centaur-tabs company consult dired-filter dired-sidebar '(centaur-tabs company consult dired-filter dired-sidebar
doom-modeline doom-themes elcord evil fennel-mode doom-modeline doom-themes elcord evil fennel-mode

39
.zshrc
View file

@ -1,35 +1,24 @@
#!/usr/bin/zsh #!/bin/sh
# _ #historie
# _______| |__ _ __ ___
# |_ / __| '_ \| '__/ __|
# _ / /\__ \ | | | | | (__
#(_)___|___/_| |_|_| \___|
#
#Coast's ~/.zshrc
HISTFILE=$HOME/.cache/zsh/history HISTFILE=$HOME/.cache/zsh/history
SAVEHIST=100000000 SAVEHIST=100000000
HISTSIZE=$SAVEHIST HISTSIZE=$SAVEHIST
setopt appendhistory setopt appendhistory
#tab completion #<tab>faediggoerelse
autoload -U compinit autoload -U compinit
zstyle ':completion:*' menu select zstyle ':completion:*' menu select
zmodload zsh/complist zmodload zsh/complist
compinit compinit
_comp_options+=(globdots) comp_options+=(globdots)
#oh my zsh #ohmyzsh
ZSH_THEME="gentoo" ZSH_THEME="gentoo" && export ZSH=$HOME/.oh-my-zsh && source $ZSH/oh-my-zsh.sh
plugins=(git)
export ZSH="$HOME/.oh-my-zsh"
source $ZSH/oh-my-zsh.sh
#source #source
source "$HOME/.config/shell/aliases" 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
source "$HOME/.config/shell/exports" #evaluere
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fpath=(/usr/share/zsh/site-functions $fpath) #farver
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh autoload -U colors && colors && setopt prompt_subst
#colors
autoload -U colors && colors
setopt prompt_subst
#prompt #prompt
[ "$(id -u)" = 0 ] && PS1ICON="#" || PS1ICON='%' [ "$(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")%} '
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