all repos — dotfiles @ b7bc040910400990bc505e0b4008a202ed33b3d6

my *nix dotfiles

Change git clean to bullet
Anirudh Oppiliappan x@icyphox.sh
Sun, 06 Jun 2021 10:54:01 +0530
commit

b7bc040910400990bc505e0b4008a202ed33b3d6

parent

7880dcac7e7591284b30618910093981a5b14e5b

2 files changed, 2 insertions(+), 3 deletions(-)

jump to
M bash/.bashrc.d/99-prompt.bashbash/.bashrc.d/99-prompt.bash

@@ -19,7 +19,7 @@

if [[ "$exit" -eq 0 ]]; then if [[ "${#status}" -eq 0 ]]; then color="${grn}" - sym="·" + sym="•" else color="${red}" sym="×"
M config/nvim/lua/statusline.luaconfig/nvim/lua/statusline.lua

@@ -32,7 +32,6 @@ '%f',

'%#Blanks#', '%m', '%#SecondaryBlock#', - git_branch(), '%=', '%#SecondaryBlock#', '%l,%c ',

@@ -40,4 +39,4 @@ '%#PrimaryBlock#',

'%{&filetype}', } -vim.o.statusline = table.concat(stl) +vim.opt_global.statusline = table.concat(stl)