summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2021-11-23 02:01:32 -0500
committerSeth Flynn <[email protected]>2021-11-23 02:41:50 -0500
commit5c67181386c648ab3996e16616d09556ebe78e0f (patch)
treeab8d0256eaa01f971119f1f2c2fb98d1079fbb22
parent30bde38cd3188cbb0bba1768e587b487c76a612a (diff)
update configs (again)
-rw-r--r--.gitignore1
-rw-r--r--bash/.bashrc25
-rw-r--r--bash/.profile5
-rw-r--r--fish/.config/starship.toml (renamed from starship/.config/starship.toml)9
-rw-r--r--zsh/.config/zsh/.zshrc13
5 files changed, 9 insertions, 44 deletions
diff --git a/.gitignore b/.gitignore
index 57f4eda..05f37de 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,4 +5,3 @@ fish/.config/fish/completions
fish/.config/fish/conf.d
fish/.config/fish/fish_variables
zsh/.config/zsh/.zcompdump
-zsh/.config/zsh/.zshrc.zwc
diff --git a/bash/.bashrc b/bash/.bashrc
deleted file mode 100644
index cc17a89..0000000
--- a/bash/.bashrc
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-# g3tchoo's bashrc
-#
-
-# set prompt
-export PS1='\[\e[0;93m\][\[\e[0;96m\]\u\[\e[0;95m\]@\[\e[0;96m\]\h \[\e[0;92m\]\w\[\e[0;93m\]]\[\e[0;90m\]$\[\e[0m\] '
-
-# options
-shopt -s autocd
-shopt -s dotglob
-shopt -s histappend
-set -o emacs
-
-# defaults
-export EDITOR='nvim'
-export VISUAL='nvim'
-export TERM=xterm-256color
-
-# alias
-alias vim='nvim'
-alias ls='exa'
-
-# Use bash-completion, if available
-[[ $PS1 && -f /usr/share/bash-completion/bash_completion ]] && \
- . /usr/share/bash-completion/bash_completion
diff --git a/bash/.profile b/bash/.profile
deleted file mode 100644
index 3e79369..0000000
--- a/bash/.profile
+++ /dev/null
@@ -1,5 +0,0 @@
-# add user's bin directory to path
-if [ -d "$HOME/.local/bin" ]
-then
- export PATH=$HOME/.local/bin:$PATH
-fi
diff --git a/starship/.config/starship.toml b/fish/.config/starship.toml
index 744befb..9684b9a 100644
--- a/starship/.config/starship.toml
+++ b/fish/.config/starship.toml
@@ -1,16 +1,19 @@
add_newline = false
-[line_break]
-disabled = true
+#[line_break]
+#disabled = true
[username]
disabled = false
show_always = true
+style_user = "bold bright-purple"
[hostname]
-ssh_only = false
+#ssh_only = false
+style = "bold bright-cyan"
[cmd_duration]
min_time = 10000
show_milliseconds = false
disabled = false
+style = "bold purple"
diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc
index b58d3f2..8b4d682 100644
--- a/zsh/.config/zsh/.zshrc
+++ b/zsh/.config/zsh/.zshrc
@@ -38,16 +38,9 @@ alias ls='exa'
alias la='ls -a'
alias g='git'
-# antigen plugins
-if [[ -f /usr/share/zsh/share/antigen.zsh ]]; then
- source /usr/share/zsh/share/antigen.zsh
-else
- source "$HOME/.local/share/zsh/antigen.zsh"
-fi
-antigen bundle zdharma-continuum/fast-syntax-highlighting
-antigen bundle zsh-users/zsh-completions
-antigen theme romkatv/powerlevel10k
-antigen apply
+# plugins
+source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
+source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
# To customize prompt, run `p10k configure` or edit ~/.config/zsh/.p10k.zsh.
[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh