From 27a43ee619101caefd6e2f2bcdfab02b0872a398 Mon Sep 17 00:00:00 2001 From: Kulvir Singh Date: Mon, 16 Dec 2024 13:47:38 +0530 Subject: [PATCH] some edits idk --- .bash_profile | 3 +++ .config/btop/btop.conf | 14 +++++++------- .config/nvim/lazy-lock.json | 3 ++- .config/nvim/lua/lilJ/plugins/lint.lua | 1 - .config/starship.toml | 2 +- .zshrc | 6 ++++++ 6 files changed, 19 insertions(+), 10 deletions(-) diff --git a/.bash_profile b/.bash_profile index ad8ec0e..234681c 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,6 +4,9 @@ eval "$(/opt/homebrew/bin/brew shellenv)" # ---- zoxide ---- eval "$(zoxide init --cmd cd bash)" +# ---- fzf ---- +eval "$(fzf --bash)" + # ---------------------- # Aliases # ---------------------- diff --git a/.config/btop/btop.conf b/.config/btop/btop.conf index d1f1fc9..3969e70 100644 --- a/.config/btop/btop.conf +++ b/.config/btop/btop.conf @@ -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" diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json index 738ba42..a181bda 100644 --- a/.config/nvim/lazy-lock.json +++ b/.config/nvim/lazy-lock.json @@ -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" }, diff --git a/.config/nvim/lua/lilJ/plugins/lint.lua b/.config/nvim/lua/lilJ/plugins/lint.lua index 2d2c887..1dbc117 100644 --- a/.config/nvim/lua/lilJ/plugins/lint.lua +++ b/.config/nvim/lua/lilJ/plugins/lint.lua @@ -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, diff --git a/.config/starship.toml b/.config/starship.toml index e8b5d8e..debd375 100644 --- a/.config/starship.toml +++ b/.config/starship.toml @@ -33,7 +33,7 @@ disabled = true [directory] home_symbol= "󰊠 " -truncation_length = 3 +truncation_length = 2 truncate_to_repo = true truncation_symbol = "󰊠 " style = "bold blue" diff --git a/.zshrc b/.zshrc index 2d98b97..63ba43a 100644 --- a/.zshrc +++ b/.zshrc @@ -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!"