some edits idk

This commit is contained in:
Kulvir Singh
2024-12-16 13:47:38 +05:30
parent 886ff37f4a
commit 27a43ee619
6 changed files with 19 additions and 10 deletions

View File

@@ -4,6 +4,9 @@ eval "$(/opt/homebrew/bin/brew shellenv)"
# ---- zoxide ----
eval "$(zoxide init --cmd cd bash)"
# ---- fzf ----
eval "$(fzf --bash)"
# ----------------------
# Aliases
# ----------------------

View File

@@ -8,7 +8,7 @@ color_theme = "Default"
theme_background = False
#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false.
truecolor = False
truecolor = True
#* Set to true to force tty mode regardless if a real tty has been detected or not.
#* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols.
@@ -57,7 +57,7 @@ update_ms = 2000
proc_sorting = "memory"
#* Reverse sorting order, True or False.
proc_reversed = False
proc_reversed = True
#* Show processes as a tree.
proc_tree = True
@@ -69,7 +69,7 @@ proc_colors = True
proc_gradient = True
#* If process cpu usage should be of the core it's running on or usage of the total available cpu power.
proc_per_core = False
proc_per_core = True
#* Show process memory as bytes instead of percent.
proc_mem_bytes = True
@@ -128,7 +128,7 @@ cpu_core_map = ""
temp_scale = "celsius"
#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024.
base_10_sizes = False
base_10_sizes = True
#* Show CPU frequency.
show_cpu_freq = True
@@ -160,13 +160,13 @@ zfs_arc_cached = True
show_swap = True
#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
swap_disk = True
swap_disk = False
#* If mem box should be split to also show disks info.
show_disks = True
#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar.
only_physical = True
only_physical = False
#* Read disks list from /etc/fstab. This also disables only_physical.
use_fstab = True
@@ -205,7 +205,7 @@ net_sync = True
net_iface = ""
#* Show battery stats in top right if battery is present.
show_battery = True
show_battery = False
#* Which battery to use if multiple are present. "Auto" for auto detection.
selected_battery = "Auto"

View File

@@ -11,8 +11,9 @@
"fidget.nvim": { "branch": "main", "commit": "ef99df04a1c53a453602421bc0f756997edc8289" },
"friendly-snippets": { "branch": "main", "commit": "dd2fd1281d4b22e7b4a5bfafa3e142d958e251f2" },
"gitsigns.nvim": { "branch": "main", "commit": "805610a9393fa231f2c2b49cb521bfa413fadb3d" },
"gopher.nvim": { "branch": "main", "commit": "f55c15ada8e02398000c04a96ef44d986cd01051" },
"indent-blankline.nvim": { "branch": "master", "commit": "ece00d5fb44d196680a81fd2761062d2fa44663b" },
"lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
"lazy.nvim": { "branch": "main", "commit": "7c493713bc2cb392706866eeba53aaef6c8e9fc6" },
"lspkind.nvim": { "branch": "master", "commit": "1735dd5a5054c1fb7feaf8e8658dbab925f4f0cf" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "a4caa0d083aab56f6cd5acf2d42331b74614a585" },
"mason-nvim-dap.nvim": { "branch": "main", "commit": "67210c0e775adec55de9826b038e8b62de554afc" },

View File

@@ -10,7 +10,6 @@ return {
dockerfile = { "hadolint" },
json = { "jsonlint" },
markdown = { "vale" },
text = { "vale" },
}
-- To allow other plugins to add linters to require('lint').linters_by_ft,

View File

@@ -33,7 +33,7 @@ disabled = true
[directory]
home_symbol= "󰊠 "
truncation_length = 3
truncation_length = 2
truncate_to_repo = true
truncation_symbol = "󰊠 "
style = "bold blue"

6
.zshrc
View File

@@ -7,6 +7,9 @@ source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
# ---- zoxide ----
eval "$(zoxide init --cmd cd zsh)"
# ---- fzf ----
source <(fzf --zsh)
# ---- Git Aliases ----
alias ga='git add'
alias gaa='git add -A'
@@ -31,3 +34,6 @@ export PATH="$BUN_INSTALL/bin:$PATH"
# ---- startship ----
eval "$(starship init zsh)"
# ---- Better man pages ----
export MANPAGER="nvim +Man!"