This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shell: zsh | |
# Prompt settings. | |
prompt: | |
disable: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_newline = false | |
format = """ | |
$shell\ | |
$username\ | |
$hostname\ | |
$shlvl\ | |
$directory\ | |
$docker_context\ | |
$package\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[/] | |
auto-hide-mouse=true | |
control-click-titlebar=true | |
control-scroll-zoom=true | |
copy-on-select=true | |
prompt-on-close=false | |
prompt-on-close-process=false | |
quake-specific-monitor=0 | |
terminal-title-style='small' | |
theme-variant='dark' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export RELEASE=$(lsb_release -is || echo "Fedora") | |
export ZSH_CUSTOM=$HOME/.oh-my-zsh/custom | |
export FONT_PATH="/usr/share/fonts/NerdFonts" | |
if [ $RELEASE = "Fedora" ];then | |
# intall needed packages | |
sudo dnf -y install zsh httpie fontawesome-fonts curl git fzf | |
elif [ $RELEASE = "Ubuntu" ];then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git clone https://github.com/romkatv/powerlevel10k.git | |
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
#autoload -U promptinit && promptinit | |
autoload -Uz compinit && compinit | |
# For Solarized | |
export TERM="xterm-256color" | |
export PATH=$HOME/bin:$PATH |