Added Poweline10k settings

This commit is contained in:
Pratik Tripathy
2020-10-14 22:58:10 +05:30
parent 55f06a8cb5
commit d94650edec
3 changed files with 1606 additions and 11 deletions

View File

@@ -65,12 +65,6 @@
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
//
// Bracket Pair Colorizer Plugin
"bracket-pair-colorizer-2.forceUniqueOpeningColor": true,
"bracket-pair-colorizer-2.rulerPosition": "Full",
"bracket-pair-colorizer-2.showBracketsInRuler": true,
"bracket-pair-colorizer-2.highlightActiveScope": true,
//
// Code Spell Checker Plugin
"cSpell.diagnosticLevel": "Hint",
"cSpell.allowCompoundWords": true,
@@ -118,7 +112,7 @@
//
// Shell check plgin
"shellcheck.run": "onSave",
"shellcheck.exclude": [2181, 2039],
"shellcheck.exclude": ["2181", "2039"],
//
// ES Lint
"eslint.alwaysShowStatus": true,
@@ -185,7 +179,7 @@
"workbench.iconTheme": "material-icon-theme",
"theme-by-language.themes": {
"*": "Visual Studio Dark",
"markdown": "Material Theme Darker High Contrast"
"markdown": "Community Material Theme Darker High Contrast"
},
"workbench.colorTheme": "Visual Studio Dark"
//

1593
.p10k.zsh Normal file

File diff suppressed because it is too large Load Diff

12
.zshrc
View File

@@ -1,3 +1,10 @@
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
@@ -10,7 +17,7 @@ export ZSH="/home/pratik/.oh-my-zsh"
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
# ZSH_THEME="robbyrussell"
POWERLEVEL9K_MODE='awesome-fontconfig'
ZSH_THEME="powerlevel9k/powerlevel9k"
ZSH_THEME="powerlevel10k/powerlevel10k"
# Uncomment the following line to use case-sensitive completion.
CASE_SENSITIVE="true"
@@ -107,7 +114,6 @@ source $ZSH/oh-my-zsh.sh
POWERLEVEL9K_SHORTEN_DIR_LENGTH=4
# POWERLEVEL9K_SHORTEN_STRATEGY="None"
POWERLEVEL9K_COMMAND_EXECUTION_TIME_THRESHOLD=0
POWERLEVEL9K_TIME_FORMAT="%D{%H:%M:%S %a}"
POWERLEVEL9K_COMMAND_EXECUTION_TIME_THRESHOLD=0
POWERLEVEL9K_COMMAND_EXECUTION_TIME_PRECISION=6
@@ -146,3 +152,5 @@ if [[ -f ~/.neon_alias ]]; then
source ~/.neon_alias
fi
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh