mirror of
https://github.com/SoPat712/dotfiles.git
synced 2025-08-21 18:38:46 -04:00
qbit and vim
This commit is contained in:
21
zsh/.zprofile
Normal file
21
zsh/.zprofile
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
|
||||
|
||||
# Added by Toolbox App
|
||||
export PATH="$PATH:/Users/joshp/Library/Application Support/JetBrains/Toolbox/scripts"
|
||||
|
||||
|
||||
##
|
||||
# Your previous /Users/joshp/.zprofile file was backed up as /Users/joshp/.zprofile.macports-saved_2024-01-16_at_13:27:44
|
||||
##
|
||||
|
||||
# MacPorts Installer addition on 2024-01-16_at_13:27:44: adding an appropriate PATH variable for use with MacPorts.
|
||||
export PATH="/opt/local/bin:/opt/local/sbin:$PATH"
|
||||
# Finished adapting your PATH environment variable for use with MacPorts.
|
||||
|
||||
|
||||
# MacPorts Installer addition on 2024-01-16_at_13:27:44: adding an appropriate MANPATH variable for use with MacPorts.
|
||||
export MANPATH="/opt/local/share/man:$MANPATH"
|
||||
# Finished adapting your MANPATH environment variable for use with MacPorts.
|
||||
|
2
zsh/.zprofile.bak
Normal file
2
zsh/.zprofile.bak
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
@@ -1,8 +0,0 @@
|
||||
export HISTSIZE=5000
|
||||
export SAVEHIST=10000
|
||||
HISTFILE=~/.cache/zsh/history
|
||||
setopt EXTENDED_HISTORY # Write the history file in the ":start:elapsed;command" format.
|
||||
setopt INC_APPEND_HISTORY # Write to the history file immediately, not when the shell exits.
|
||||
setopt SHARE_HISTORY # Share history between all sessions.
|
||||
setopt HIST_EXPIRE_DUPS_FIRST # Expire duplicate entries first when trimming history.
|
||||
setopt HIST_IGNORE_DUPS # Don't record an entry that was just recorded again.
|
10
zsh/.zshrc
10
zsh/.zshrc
@@ -2,6 +2,16 @@ export GPG_TTY=$TTY
|
||||
gpgconf --launch gpg-agent
|
||||
export BAT_THEME="Enki-Tokyo-Night"
|
||||
|
||||
# history stuff
|
||||
export HISTSIZE=5000
|
||||
export SAVEHIST=10000
|
||||
export HISTFILE=~/.cache/zsh/.zsh_history
|
||||
setopt EXTENDED_HISTORY # Write the history file in the ":start:elapsed;command" format.
|
||||
setopt INC_APPEND_HISTORY # Write to the history file immediately, not when the shell exits.
|
||||
setopt SHARE_HISTORY # Share history between all sessions.
|
||||
setopt HIST_EXPIRE_DUPS_FIRST # Expire duplicate entries first when trimming history.
|
||||
setopt HIST_IGNORE_DUPS # Don't record an entry that was just recorded again.
|
||||
|
||||
source ~/Projects/zsh-autocomplete/zsh-autocomplete.plugin.zsh
|
||||
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||||
# Initialization code that may require console input (password prompts, [y/n]
|
||||
|
Reference in New Issue
Block a user