repos / dotfiles

my dotfiles

commit
fa2f26e
parent
eca87bf
author
Eric Bower
date
2025-07-09 11:19:07 -0400 EDT
chore: add indent-blankline
2 files changed,  +13, -6
M dot/gitconfig
+6, -6
 1@@ -19,9 +19,9 @@
 2 [format]
 3   useAutoBase = whenAble
 4 [alias]
 5-  gu = remote update --prune
 6-  ga = add -A
 7-  gm = commit -S
 8-  gs = commit -S --amend --no-edit
 9-  gl = --no-pager log --oneline -n 15
10-  gt = log --graph --oneline --all
11+  u = remote update --prune
12+  a = add -A
13+  m = commit -S
14+  s = commit -S --amend --no-edit
15+  l = !git --no-pager log --oneline -n 15
16+  t = log --graph --oneline --all
M dot_config/nvim/init.lua
+7, -0
 1@@ -203,5 +203,12 @@ require("lazy").setup({
 2         vim.cmd[[colorscheme dracula]]
 3       end
 4     },
 5+    {
 6+    "lukas-reineke/indent-blankline.nvim",
 7+      main = "ibl",
 8+      config = function()
 9+        require("ibl").setup()
10+      end
11+    },
12   },
13 })