Skip to content

Commit

Permalink
termium
Browse files Browse the repository at this point in the history
  • Loading branch information
svg153 committed Feb 25, 2024
1 parent 8255788 commit a374259
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 3 deletions.
12 changes: 11 additions & 1 deletion .bashrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### Added by Codeium. These lines cannot be automatically removed if modified
if command -v termium > /dev/null 2>&1; then
eval "$(termium shell-hook show pre)"
fi
### End of Codeium integration
#
# -> functions
#
Expand Down Expand Up @@ -157,4 +162,9 @@ fi

#
# <- My configuration
#
#
### Added by Codeium. These lines cannot be automatically removed if modified
if command -v termium > /dev/null 2>&1; then
eval "$(termium shell-hook show post)"
fi
### End of Codeium integration
11 changes: 11 additions & 0 deletions .profile
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### Added by Codeium. These lines cannot be automatically removed if modified
if command -v termium > /dev/null 2>&1; then
eval "$(termium shell-hook show pre)"
fi
### End of Codeium integration
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
Expand All @@ -17,3 +22,9 @@ PATH="$HOME/bin:$HOME/.local/bin:$PATH"
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi

### Added by Codeium. These lines cannot be automatically removed if modified
if command -v termium > /dev/null 2>&1; then
eval "$(termium shell-hook show post)"
fi
### End of Codeium integration
15 changes: 13 additions & 2 deletions .zshrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### Added by Codeium. These lines cannot be automatically removed if modified
if command -v termium > /dev/null 2>&1; then
eval "$(termium shell-hook show pre)"
fi
### End of Codeium integration
#
# -> VARS
#
Expand Down Expand Up @@ -142,9 +147,9 @@ fi
plugins+=(autojump)

# git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
plugins+=(zsh-autosuggestions)
# plugins+=(zsh-autosuggestions)
# https://github.com/zsh-users/zsh-autosuggestions#configuration
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=white'
# export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=white'

# git clone https://github.com/zsh-users/zsh-syntax-highlighting ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
plugins+=(zsh-syntax-highlighting)
Expand Down Expand Up @@ -243,3 +248,9 @@ fi
#
# <- My configuration
#

### Added by Codeium. These lines cannot be automatically removed if modified
if command -v termium > /dev/null 2>&1; then
eval "$(termium shell-hook show post)"
fi
### End of Codeium integration
1 change: 1 addition & 0 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,7 @@ function install_termium()
# https://github.com/Exafunction/codeium

curl -L https://github.com/Exafunction/codeium/releases/download/termium-v0.2.0/install.sh | bash
termium auth
}

function install_webinstall()
Expand Down

0 comments on commit a374259

Please sign in to comment.