Starship toml, as well as fixing antibody
This commit is contained in:
parent
0accb664fb
commit
c62960330f
6 changed files with 19 additions and 9 deletions
|
@ -89,7 +89,7 @@ module.exports = {
|
|||
|
||||
// for setting shell arguments (i.e. for using interactive shellArgs: ['-i'])
|
||||
// by default ['--login'] will be used
|
||||
shellArgs: ['--login', '-c' , 'tmux new -A -s DefaultSession'],
|
||||
shellArgs: ['--login'],
|
||||
|
||||
// for environment variables
|
||||
env: {},
|
||||
|
|
|
@ -16,6 +16,12 @@
|
|||
dest: ~/.zsh_plugins.txt
|
||||
state: link
|
||||
|
||||
- name: Symlink starship.toml
|
||||
file:
|
||||
src: ~/.dotfiles/zsh/starship.toml
|
||||
dest: ~/.config/starship.toml
|
||||
state: link
|
||||
|
||||
- name: Symlink zshrc
|
||||
file:
|
||||
src: ~/.dotfiles/zsh/zshrc
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# set default terminal
|
||||
#set -ga terminal-overrides ",xterm-kitty:Tc,alacritty:Tc,xterm-termite:Tc"
|
||||
# set-option -g default-terminal "tmux-256color"
|
||||
set-option -g default-terminal "tmux-256color"
|
||||
# set mouse/history stuff
|
||||
set -g mouse on
|
||||
set -g history-limit 20000
|
||||
|
|
5
zsh/starship.toml
Normal file
5
zsh/starship.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
[character]
|
||||
symbol = "➜"
|
||||
error_symbol = "✗"
|
||||
use_symbol_for_status = true
|
||||
vicmd_symbol = "⚒️"
|
|
@ -1,4 +1,3 @@
|
|||
robbyrussell/oh-my-zsh
|
||||
robbyrussell/oh-my-zsh path:plugins/git
|
||||
robbyrussell/oh-my-zsh path:plugins/vi-mode
|
||||
|
||||
|
|
12
zsh/zshrc
12
zsh/zshrc
|
@ -1,5 +1,5 @@
|
|||
# Lines configured by zsh-newuser-install
|
||||
zmodload zsh/zprof
|
||||
# zmodload zsh/zprof
|
||||
|
||||
HISTFILE=~/.histfile
|
||||
HISTSIZE=10000
|
||||
|
@ -7,6 +7,7 @@ SAVEHIST=10000
|
|||
setopt extendedglob nomatch notify histignorespace histignorealldups histnofunctions histnostore histverify incappendhistory
|
||||
unsetopt autocd beep
|
||||
bindkey -v
|
||||
export RPROMPT='' # Fixes a side-effect of the vi-mode oh-my-zsh plugin
|
||||
export KEYTIMEOUT=1
|
||||
|
||||
#keybindings
|
||||
|
@ -37,6 +38,8 @@ export VISUAL='nvim'
|
|||
export EDITOR='nvim'
|
||||
export PATH=$HOME/bin:$PATH
|
||||
|
||||
source <(antibody init)
|
||||
|
||||
antibody bundle < ~/.zsh_plugins.txt
|
||||
|
||||
if [[ -e ~/.cargo/bin/starship ]]; then
|
||||
|
@ -47,14 +50,11 @@ fi
|
|||
|
||||
alias exa="exa -l --git"
|
||||
|
||||
# export TERM="tmux-256color"
|
||||
export SHELL="/bin/zsh"
|
||||
|
||||
function dt() {
|
||||
local session_name
|
||||
session_name=${1:-DefaultSession}
|
||||
|
||||
tmux new-session -A -s $session_name
|
||||
tmux -2 new-session -A -s $session_name
|
||||
}
|
||||
|
||||
function _dt_completion {
|
||||
|
@ -113,4 +113,4 @@ else
|
|||
touch $HOME/.zshsrc
|
||||
fi
|
||||
|
||||
zprof
|
||||
# zprof
|
||||
|
|
Loading…
Add table
Reference in a new issue