7 Commits

Author SHA1 Message Date
5ea0114631 fix tabs in nvim 2026-03-20 12:52:26 +05:30
6e2eba211f fix oh my bash path 2026-03-16 20:57:29 +05:30
993e375a76 Move shell config 2026-03-15 14:55:55 +05:30
d68beb82d9 Geany config changes 2026-03-15 14:32:21 +05:30
58080d0aa2 Change wezterm config file path 2026-03-15 14:28:04 +05:30
471d2e2b71 remove copilot from master 2026-03-15 14:20:33 +05:30
48d7990c10 ignore lazy lock 2026-03-15 14:19:37 +05:30
9 changed files with 17 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ case $- in
esac esac
# Path to your oh-my-bash installation. # Path to your oh-my-bash installation.
export OSH='/home/jsarthak/.oh-my-bash' export OSH='$HOME/.oh-my-bash'
# Set name of the theme to load. Optionally, if you set this to "random" # Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-bash is loaded. # it'll load a random theme each time that oh-my-bash is loaded.
@@ -172,6 +172,6 @@ fi
# interactive shell. # interactive shell.
# Example command: # Example command:
source ~/dotfiles/shell/common source ~/.config/shell/common
source ~/dotfiles/shell/personal #added by 6500gitsetup source ~/.config/shell/personal #added by 6500gitsetup
source ~/dotfiles/shell/aliases source ~/.config/shell/aliases

View File

@@ -1 +0,0 @@
.*

View File

@@ -3,7 +3,15 @@ local options = {
base46 = { base46 = {
theme = "tokyodark", -- default theme theme = "tokyodark", -- default theme
hl_add = {}, hl_add = {},
hl_override = {}, hl_override = {
TbBufOn = {
bold = true,
fg = "green",
},
St_FileName = {
bold = true,
},
},
integrations = {}, integrations = {},
changed_themes = {}, changed_themes = {},
transparency = true, transparency = true,

View File

@@ -1 +0,0 @@
.*

View File

@@ -111,9 +111,10 @@ source <(fzf --zsh)
export PATH="/Users/jsarthak/.antigravity/antigravity/bin:$PATH" export PATH="/Users/jsarthak/.antigravity/antigravity/bin:$PATH"
export PATH="/Users/jsarthak/flutter-sdk/flutter/bin:$PATH" export PATH="/Users/jsarthak/flutter-sdk/flutter/bin:$PATH"
export PATH="/opt/homebrew/bin:/opt/homebrew/sbin:$PATH" export PATH="/opt/homebrew/bin:/opt/homebrew/sbin:$PATH"
source $HOME/dotfiles/shell/common source ~/.config/shell/common
source $HOME/dotfiles/shell/personal source ~/.config/shell/personal
source $HOME/dotfiles/shell/aliases source ~/.config/shell/aliases
MANPAGER="col -b | cat" MANPAGER="col -b | cat"
MANROFFOPT="-P-c" MANROFFOPT="-P-c"
eval "$(zoxide init zsh)" eval "$(zoxide init zsh)"