Misc changes

This commit is contained in:
jdormit 2024-03-12 10:56:19 -04:00
parent 24ef85c2a1
commit 3313d96324
6 changed files with 11 additions and 8 deletions

View File

@ -25,7 +25,7 @@
(evil-vsplit-window-right t)) (evil-vsplit-window-right t))
(use-package evil-collection (use-package evil-collection
:straight (:host github :repo "meliache/evil-collection" :branch "mu4e-development") ;; :straight (:host github :repo "meliache/evil-collection" :branch "mu4e-development")
:after evil :after evil
:config :config
(evil-collection-init '(dashboard (evil-collection-init '(dashboard

View File

@ -1,6 +1,6 @@
;; -*- lexical-binding: t; -*- ;; -*- lexical-binding: t; -*-
(use-package ruby-mode (use-package ruby-mode
:straight (:typebuilt-in)) :straight (:type built-in))
(use-package rbenv (use-package rbenv
:hook (after-init . global-rbenv-mode)) :hook (after-init . global-rbenv-mode))

View File

@ -37,6 +37,9 @@
(straight-use-package 'use-package) (straight-use-package 'use-package)
(setq straight-use-package-by-default t) (setq straight-use-package-by-default t)
;; Tell straight to use SSH for git connections
(setq straight-vc-git-default-protocol 'ssh)
;; "Garbage Collection Magic Hack" ;; "Garbage Collection Magic Hack"
(use-package gcmh (use-package gcmh
:demand t :demand t

View File

@ -3,7 +3,8 @@ $git_branch\
$git_commit\ $git_commit\
$git_state\ $git_state\
$git_metrics\ $git_metrics\
$git_status $git_status\
$time
$character""" $character"""
[directory] [directory]
@ -13,3 +14,6 @@ repo_root_style = 'bold cyan'
[git_branch] [git_branch]
symbol = '🌱 ' symbol = '🌱 '
[time]
disabled = false

View File

@ -35,7 +35,3 @@ if [ -d "/opt/homebrew/Caskroom/google-cloud-sdk" ]; then
fi fi
[[ -e "$HOME/.cargo/env" ]] && . "$HOME/.cargo/env" [[ -e "$HOME/.cargo/env" ]] && . "$HOME/.cargo/env"
if command -v rbenv &> /dev/null; then
eval "$(rbenv init - zsh)"
fi

View File

@ -93,7 +93,7 @@ fi
# Custom plugins may be added to $ZSH_CUSTOM/plugins/ # Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse) # Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup. # Add wisely, as too many plugins slow down shell startup.
plugins=(git direnv pipenv npm nvm) plugins=(git direnv pipenv npm nvm rbenv)
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh