Compare commits

..

4 Commits

Author SHA1 Message Date
01c16211ed
Revert "refactor(nvim): add check for folds in statuscol for std cond"
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 53s
This reverts commit 7012f0e14f61db0a45e8bf44f64320fbd1670fe4.
2024-04-19 04:35:19 -05:00
151bed5a6e
refactor(nvim): remove :journal: tag in Org Journal template 2024-04-19 04:23:10 -05:00
0026a4b889
feat(zsh): add g alias for git 2024-04-19 04:22:58 -05:00
3f97558a9d
refactor(nvim): improve trouble configuration 2024-04-19 04:22:42 -05:00
4 changed files with 8 additions and 4 deletions

View File

@ -47,7 +47,7 @@ return {
},
j = {
description = "Journal",
template = "\n* %? %U :journal:",
template = "\n* %? %U",
target = "~/Notes/journal/%<%Y-%m-%d>.org",
},
},

View File

@ -33,7 +33,7 @@ return {
return value
end
end
return (not buf_opt("bufhidden")) or (args.fold.width > 0)
return (not buf_opt("bufhidden"))
end
return {

View File

@ -36,7 +36,7 @@ return {
"<cmd>Trouble lsp_type_definitions toggle win.position=right<CR>",
desc = "LSP: Type Definitions",
},
{ "<leader>xx", "<cmd>Trouble lsp toggle focus=false win.position=right<CR>", desc = "Trouble: LSP" },
{ "<leader>xx", "<cmd>Trouble lsp toggle win.position=right<CR>", desc = "Trouble: LSP" },
{
"<leader>xd",
"<cmd>Trouble diagnostics toggle win.position=right<cr>",
@ -47,7 +47,7 @@ return {
{ "<leader>xt", "<cmd>Trouble todo toggle win.position=right<cr>", desc = "Trouble: Todo Items" },
{
"<leader>xo",
"<cmd>Trouble symbols toggle focus=false<cr>",
"<cmd>Trouble symbols toggle<cr>",
desc = "Trouble: Symbols",
},
},
@ -57,6 +57,9 @@ return {
"todo-comments.nvim",
},
opts = {
focus = true,
auto_close = true,
max_items = 2000,
win = {
type = "split",
},

View File

@ -29,6 +29,7 @@
alias gl="${editor_to_use} -c 'call feedkeys(\":Neogit log\<CR>l\")'"
fi
alias g="git"
alias gc="git commit"
alias gcm="git commit -m"
alias ga="git add"