Compare commits

..

No commits in common. "01c16211ed96221baca78ccc3bde62ce860ead1d" and "4ff36364359dc95d6b2affc67579a9cc19d31b40" have entirely different histories.

4 changed files with 4 additions and 8 deletions

View File

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

View File

@ -33,7 +33,7 @@ return {
return value
end
end
return (not buf_opt("bufhidden"))
return (not buf_opt("bufhidden")) or (args.fold.width > 0)
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 win.position=right<CR>", desc = "Trouble: LSP" },
{ "<leader>xx", "<cmd>Trouble lsp toggle focus=false 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<cr>",
"<cmd>Trouble symbols toggle focus=false<cr>",
desc = "Trouble: Symbols",
},
},
@ -57,9 +57,6 @@ return {
"todo-comments.nvim",
},
opts = {
focus = true,
auto_close = true,
max_items = 2000,
win = {
type = "split",
},

View File

@ -29,7 +29,6 @@
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"