From 84a483debed50166c80ed1be1826222c0fd73ac5 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 16:35:02 -0500 Subject: [PATCH 01/23] Auto commit: 2024-11-09 16:35:02 --- .config/lazygit/state.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/lazygit/state.yml b/.config/lazygit/state.yml index 2dcfbe4b..b24e0128 100644 --- a/.config/lazygit/state.yml +++ b/.config/lazygit/state.yml @@ -1,6 +1,6 @@ lastupdatecheck: 0 recentrepos: - - /home/fic + - /home/fic/dev/zona - /home/fic/cisc/indiv-project - /home/fic/scripts startuppopupversion: 5 From 9d75166ded6298afc43ce3cee32884adeb7194ef Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 16:50:02 -0500 Subject: [PATCH 02/23] Auto commit: 2024-11-09 16:50:02 --- .config/nvim/lua/config/autocmds.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.config/nvim/lua/config/autocmds.lua b/.config/nvim/lua/config/autocmds.lua index a9f0d73a..095ae56d 100644 --- a/.config/nvim/lua/config/autocmds.lua +++ b/.config/nvim/lua/config/autocmds.lua @@ -14,14 +14,14 @@ vim.api.nvim_create_autocmd("FileType", { cl.Group.new("@constant.builtin", cl.colors.complement) end, }) -vim.api.nvim_create_autocmd("FileType", { - pattern = "tex", - callback = function() - vim.cmd([[ - syntax match texMathSymbol "\\oplus" conceal cchar=⊕ - ]]) - end, -}) +-- vim.api.nvim_create_autocmd("FileType", { +-- pattern = "tex", +-- callback = function() +-- vim.cmd([[ +-- syntax match texMathSymbol "\\oplus" conceal cchar=⊕ +-- ]]) +-- end, +-- }) -- This autocommand fixes syntax highlighting for inline math in markdown files -- Together with vimtex, it will apply very sexy good stuff here! vim.api.nvim_create_autocmd("FileType", { From 5db87fb7719c5f071638031cbed5b47ade805926 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 17:00:02 -0500 Subject: [PATCH 03/23] Auto commit: 2024-11-09 17:00:02 --- .config/nvim/lua/config/autocmds.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/nvim/lua/config/autocmds.lua b/.config/nvim/lua/config/autocmds.lua index 095ae56d..256e0479 100644 --- a/.config/nvim/lua/config/autocmds.lua +++ b/.config/nvim/lua/config/autocmds.lua @@ -58,6 +58,8 @@ vim.api.nvim_create_autocmd({ "FileType" }, { pattern = { "markdown" }, callback = function() vim.opt_local.breakindent = true + -- We want markdown files to autosave + vim.opt_local.autowrite = true vim.opt_local.wrap = true vim.opt_local.spell = true -- local secondary = "#379393" From 3696001c4bba71c313c80fe5229c01bbfbd2e662 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 17:05:02 -0500 Subject: [PATCH 04/23] Auto commit: 2024-11-09 17:05:02 --- .config/nvim/lua/config/autocmds.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/config/autocmds.lua b/.config/nvim/lua/config/autocmds.lua index 256e0479..fe749edd 100644 --- a/.config/nvim/lua/config/autocmds.lua +++ b/.config/nvim/lua/config/autocmds.lua @@ -59,7 +59,11 @@ vim.api.nvim_create_autocmd({ "FileType" }, { callback = function() vim.opt_local.breakindent = true -- We want markdown files to autosave - vim.opt_local.autowrite = true + -- vim.opt_local.autowrite = true + vim.api.nvim_create_autocmd({ "InsertLeave", "TextChanged" }, { + buffer = 0, + command = "write", + }) vim.opt_local.wrap = true vim.opt_local.spell = true -- local secondary = "#379393" From 62dab0d848929b744a0dda42ad729f5b14af7177 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 17:10:02 -0500 Subject: [PATCH 05/23] Auto commit: 2024-11-09 17:10:02 --- .config/nvim/lua/config/autocmds.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.config/nvim/lua/config/autocmds.lua b/.config/nvim/lua/config/autocmds.lua index fe749edd..936ff5c6 100644 --- a/.config/nvim/lua/config/autocmds.lua +++ b/.config/nvim/lua/config/autocmds.lua @@ -59,10 +59,9 @@ vim.api.nvim_create_autocmd({ "FileType" }, { callback = function() vim.opt_local.breakindent = true -- We want markdown files to autosave - -- vim.opt_local.autowrite = true vim.api.nvim_create_autocmd({ "InsertLeave", "TextChanged" }, { buffer = 0, - command = "write", + command = "silent! write", }) vim.opt_local.wrap = true vim.opt_local.spell = true From 728a747d12165473bcd3baae4feb5f6df7282c98 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 18:05:01 -0500 Subject: [PATCH 06/23] Auto commit: 2024-11-09 18:05:01 --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index fd40e54e..1d267bdf 100644 --- a/.zshrc +++ b/.zshrc @@ -27,6 +27,9 @@ alias tl="tmux list-sessions" alias tn="tmux new-session" alias tnt="tmux new-session -t" +alias svenv="source .venv/bin/activate" +alias szsh="source ~/.zshrc" + bindkey -r '^T' # Created by `pipx` on 2024-09-20 02:14:00 From c2e1eacf7d1b8d9b0f106d74a085c860b97a4668 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 18:15:02 -0500 Subject: [PATCH 07/23] Auto commit: 2024-11-09 18:15:02 --- .config/lazygit/state.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/lazygit/state.yml b/.config/lazygit/state.yml index b24e0128..1b917fcd 100644 --- a/.config/lazygit/state.yml +++ b/.config/lazygit/state.yml @@ -1,7 +1,7 @@ lastupdatecheck: 0 recentrepos: - - /home/fic/dev/zona - /home/fic/cisc/indiv-project + - /home/fic/dev/zona - /home/fic/scripts startuppopupversion: 5 lastversion: 0.44.1 From 8b2f112e1e5722d8ff4af45332acc0c63d3bab7b Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 18:20:02 -0500 Subject: [PATCH 08/23] Auto commit: 2024-11-09 18:20:02 --- .config/nvim/lua/config/autocmds.lua | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.config/nvim/lua/config/autocmds.lua b/.config/nvim/lua/config/autocmds.lua index 936ff5c6..53c8e1d8 100644 --- a/.config/nvim/lua/config/autocmds.lua +++ b/.config/nvim/lua/config/autocmds.lua @@ -31,27 +31,11 @@ vim.api.nvim_create_autocmd("FileType", { syn region mathBlock start=/\$\$/ end=/\$\$/ contains=@tex " inline math syn match mathInline '\$[^$].\{-}\$' contains=@tex - " syn include @tex syntax/tex.vim " actually highlight the region we defined as "math" syn include @tex syntax/tex.vim hi def link mathBlock Statement hi def link mathInline Statement - " let g:vimtex_syntax_custom_cmds = [ - " \ {'name': 'vct', 'mathmode': 1, 'argstyle': 'bold'}, - " \ {'name': 'R', 'cmdre': 'R>', 'mathmode': 1, 'concealchar': 'ℝ'}, - " \ {'name': 'R', 'mathmode': 1, 'concealchar': 'ℝ'}, - " \ {'name': 'mathnote', 'mathmode': 1, 'nextgroup': 'texMathTextArg'}, - " \ {'name': 'nospell', 'argspell': 0}, - " \] ]]) - vim.g.vimtex_syntax_custom_cmds = vim.tbl_extend("force", vim.g.vimtex_syntax_custom_cmds or {}, { - -- { name = "oplus", mathmode = 1, concealchar = "⊕" }, - { name = "oplus", mathmode = 1, concealchar = "⊕" }, - }) - -- vim.g.vimtex_syntax_conceal = { - -- math = 1, - -- oplus = "⊕", - -- } end, }) vim.api.nvim_create_autocmd({ "FileType" }, { From ceac20d449f55ebbcec0758f51259d75f1be60fd Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 18:45:02 -0500 Subject: [PATCH 09/23] Auto commit: 2024-11-09 18:45:02 --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 1d267bdf..d4934e78 100644 --- a/.zshrc +++ b/.zshrc @@ -11,7 +11,7 @@ bindkey "^e" edit-command-line # Set up fzf key bindings and fuzzy completion # eval "$(fzf --zsh)" -alias ls="eza -lh" +alias ls="eza -lh --git" alias top=btop alias v=nvim alias testvim='NVIM_APPNAME=nvim-test nvim' From 54b252b86f5e7fecd1e03766e2bb82ace337ca83 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 18:50:02 -0500 Subject: [PATCH 10/23] Auto commit: 2024-11-09 18:50:02 --- .config/nvim/lua/plugins/extend-mini-files.lua | 3 +++ .config/nvim/lua/plugins/oil.lua | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/extend-mini-files.lua b/.config/nvim/lua/plugins/extend-mini-files.lua index 42c2a958..24c59941 100644 --- a/.config/nvim/lua/plugins/extend-mini-files.lua +++ b/.config/nvim/lua/plugins/extend-mini-files.lua @@ -29,5 +29,8 @@ return { -- go_out = "", -- reset = "-", }, + options = { + use_as_default_explorer = true, + }, }, } diff --git a/.config/nvim/lua/plugins/oil.lua b/.config/nvim/lua/plugins/oil.lua index 494cfe1e..56cb6205 100644 --- a/.config/nvim/lua/plugins/oil.lua +++ b/.config/nvim/lua/plugins/oil.lua @@ -3,7 +3,7 @@ return { ---@module 'oil' ---@type oil.SetupOpts opts = { - default_file_explorer = true, + default_file_explorer = false, delete_to_trash = true, columns = { "icon", From 32af610154e6c968e7deae2478f618af042ef8ac Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 19:00:02 -0500 Subject: [PATCH 11/23] Auto commit: 2024-11-09 19:00:02 --- .config/lazygit/state.yml | 1 + .config/nvim/lua/plugins/extend-mini-files.lua | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.config/lazygit/state.yml b/.config/lazygit/state.yml index 1b917fcd..f1231a43 100644 --- a/.config/lazygit/state.yml +++ b/.config/lazygit/state.yml @@ -1,5 +1,6 @@ lastupdatecheck: 0 recentrepos: + - /home/fic - /home/fic/cisc/indiv-project - /home/fic/dev/zona - /home/fic/scripts diff --git a/.config/nvim/lua/plugins/extend-mini-files.lua b/.config/nvim/lua/plugins/extend-mini-files.lua index 24c59941..39dc97b3 100644 --- a/.config/nvim/lua/plugins/extend-mini-files.lua +++ b/.config/nvim/lua/plugins/extend-mini-files.lua @@ -1,5 +1,6 @@ return { "echasnovski/mini.files", + lazy = false, keys = { { "e", @@ -9,14 +10,14 @@ return { desc = "Open mini.files (current file directory)", }, { - "E", + "fm", function() require("mini.files").open(vim.uv.cwd(), true) end, desc = "Open mini.files (cwd)", }, { - "fm", + "E", function() require("mini.files").open(LazyVim.root(), true) end, From f3a0483d970097e560e8f564c642a6d4f4e77edc Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 19:00:14 -0500 Subject: [PATCH 12/23] removed log kek --- .config/yadm/autoshdpad.log | 183 ------------------------------------ 1 file changed, 183 deletions(-) delete mode 100644 .config/yadm/autoshdpad.log diff --git a/.config/yadm/autoshdpad.log b/.config/yadm/autoshdpad.log deleted file mode 100644 index 145d0e2b..00000000 --- a/.config/yadm/autoshdpad.log +++ /dev/null @@ -1,183 +0,0 @@ -[main 8765c96] Auto commit: 2024-11-08 14:05:02 - 2 files changed, 1 insertion(+), 1 deletion(-) - create mode 100644 .config/yadm/autoshdpad.log -[main 436d911] Auto commit: 2024-11-08 14:10:01 - 1 file changed, 3 insertions(+) -[main ed4869f] Auto commit: 2024-11-08 14:15:02 - 1 file changed, 2 insertions(+) -[main 50bec13] Auto commit: 2024-11-08 14:20:02 - 1 file changed, 2 insertions(+) -[main d9f0f46] Auto commit: 2024-11-08 14:25:02 - 1 file changed, 2 insertions(+) -[main f984a12] Auto commit: 2024-11-08 14:30:02 - 1 file changed, 2 insertions(+) -[main c92f706] Auto commit: 2024-11-08 14:35:02 - 1 file changed, 2 insertions(+) -[main 8f279ea] Auto commit: 2024-11-08 14:40:02 - 1 file changed, 2 insertions(+) -[main 9fe8ab9] Auto commit: 2024-11-08 14:45:02 - 1 file changed, 2 insertions(+) -[main a06b43e] Auto commit: 2024-11-08 14:50:02 - 1 file changed, 2 insertions(+) -[main 9c101dc] Auto commit: 2024-11-08 14:55:02 - 1 file changed, 2 insertions(+) -[main 853f0ca] Auto commit: 2024-11-08 15:00:02 - 1 file changed, 2 insertions(+) -[main 0b11da2] Auto commit: 2024-11-08 15:05:02 - 1 file changed, 2 insertions(+) -[main cebcdc9] Auto commit: 2024-11-08 15:10:02 - 1 file changed, 2 insertions(+) -[main 56c5aa8] Auto commit: 2024-11-08 15:15:02 - 1 file changed, 2 insertions(+) -[main 765eb79] Auto commit: 2024-11-08 15:20:02 - 1 file changed, 2 insertions(+) -[main 5a2a7fd] Auto commit: 2024-11-08 15:25:02 - 1 file changed, 2 insertions(+) -[main 9765088] Auto commit: 2024-11-08 15:30:02 - 1 file changed, 2 insertions(+) -[main 14b4c72] Auto commit: 2024-11-08 15:45:04 - 1 file changed, 2 insertions(+) -[main 2428f22] Auto commit: 2024-11-08 15:50:03 - 1 file changed, 2 insertions(+) -[main c9063ed] Auto commit: 2024-11-08 15:55:03 - 1 file changed, 2 insertions(+) -[main 3bf3439] Auto commit: 2024-11-08 16:00:03 - 1 file changed, 2 insertions(+) -[main 61a3689] Auto commit: 2024-11-08 16:05:02 - 1 file changed, 2 insertions(+) -[main 7c1723e] Auto commit: 2024-11-08 16:10:03 - 1 file changed, 2 insertions(+) -[main d956930] Auto commit: 2024-11-08 16:15:03 - 1 file changed, 2 insertions(+) -[main 13fc5c6] Auto commit: 2024-11-08 16:20:03 - 1 file changed, 2 insertions(+) -[main 22a273f] Auto commit: 2024-11-08 16:25:03 - 1 file changed, 2 insertions(+) -[main be78ca3] Auto commit: 2024-11-08 16:30:03 - 1 file changed, 2 insertions(+) -[main 19f6e85] Auto commit: 2024-11-08 16:35:03 - 1 file changed, 2 insertions(+) -[main dc933eb] Auto commit: 2024-11-08 16:40:03 - 1 file changed, 2 insertions(+) -[main d79db01] Auto commit: 2024-11-08 16:45:03 - 1 file changed, 2 insertions(+) -[main 7ef30dc] Auto commit: 2024-11-08 16:50:02 - 1 file changed, 2 insertions(+) -[main 2a17ffb] Auto commit: 2024-11-08 16:55:03 - 1 file changed, 2 insertions(+) -[main b4fa06b] Auto commit: 2024-11-08 17:00:03 - 1 file changed, 2 insertions(+) -[main d4ba063] Auto commit: 2024-11-08 17:05:03 - 1 file changed, 2 insertions(+) -[main 02cddac] Auto commit: 2024-11-08 17:10:03 - 1 file changed, 2 insertions(+) -[main 29aabaa] Auto commit: 2024-11-08 17:30:03 - 1 file changed, 2 insertions(+) -[main eeb8a0c] Auto commit: 2024-11-08 17:35:03 - 2 files changed, 3 insertions(+), 1 deletion(-) -[main f7c230a] Auto commit: 2024-11-08 17:40:03 - 1 file changed, 2 insertions(+) -[main 9b9efe0] Auto commit: 2024-11-08 17:45:03 - 1 file changed, 2 insertions(+) -[main 57b1e7c] Auto commit: 2024-11-08 17:50:03 - 1 file changed, 2 insertions(+) -[main f299169] Auto commit: 2024-11-08 17:55:03 - 1 file changed, 2 insertions(+) -[main 29487b4] Auto commit: 2024-11-08 18:00:03 - 1 file changed, 2 insertions(+) -[main deae75f] Auto commit: 2024-11-08 18:05:02 - 1 file changed, 2 insertions(+) -[main f90dc52] Auto commit: 2024-11-08 18:25:02 - 1 file changed, 2 insertions(+) -[main 39f6a5f] Auto commit: 2024-11-08 18:30:02 - 1 file changed, 2 insertions(+) -[main d27ba9c] Auto commit: 2024-11-08 18:35:02 - 1 file changed, 2 insertions(+) -[main f0429c2] Auto commit: 2024-11-08 18:40:02 - 1 file changed, 2 insertions(+) -[main 5a683de] Auto commit: 2024-11-08 18:45:02 - 1 file changed, 2 insertions(+) -[main 87929a5] Auto commit: 2024-11-08 18:50:02 - 3 files changed, 7 insertions(+), 1 deletion(-) - create mode 100644 .config/nvim/lua/plugins/no-neck-pain.lua -[main 19bdcd3] Auto commit: 2024-11-08 18:55:02 - 1 file changed, 3 insertions(+) -[main cc0e5ef] Auto commit: 2024-11-08 19:00:02 - 2 files changed, 19 insertions(+), 2 deletions(-) -[main 287902b] Auto commit: 2024-11-08 19:05:02 - 3 files changed, 19 insertions(+), 16 deletions(-) -[main ce16f38] Auto commit: 2024-11-08 19:10:02 - 2 files changed, 3 insertions(+) -[main 6406661] Auto commit: 2024-11-08 19:15:02 - 1 file changed, 2 insertions(+) -[main c2608b2] Auto commit: 2024-11-08 19:20:02 - 1 file changed, 2 insertions(+) -[main fe10c4a] Auto commit: 2024-11-08 19:25:02 - 4 files changed, 8 insertions(+) -[main cdee114] Auto commit: 2024-11-08 19:30:02 - 3 files changed, 13 insertions(+), 5 deletions(-) -[main e840172] Auto commit: 2024-11-08 19:35:02 - 2 files changed, 2 insertions(+), 1 deletion(-) -[main a2d9e72] Auto commit: 2024-11-08 19:40:02 - 2 files changed, 6 insertions(+) -[main a21f977] Auto commit: 2024-11-08 19:45:02 - 2 files changed, 8 insertions(+) -[main 6986b50] Auto commit: 2024-11-08 19:50:02 - 2 files changed, 13 insertions(+), 3 deletions(-) -[main b751252] Auto commit: 2024-11-08 19:55:02 - 2 files changed, 5 insertions(+) -[main a4594e3] Auto commit: 2024-11-08 20:00:02 - 1 file changed, 2 insertions(+) -[main 525744b] Auto commit: 2024-11-08 20:05:02 - 3 files changed, 5 insertions(+) -[main 4f40347] Auto commit: 2024-11-08 20:10:02 - 3 files changed, 3 insertions(+) -[main 4d800a7] Auto commit: 2024-11-08 20:15:02 - 1 file changed, 2 insertions(+) -[main 1f29792] Auto commit: 2024-11-08 20:20:01 - 1 file changed, 2 insertions(+) -[main a86a696] Auto commit: 2024-11-08 20:25:02 - 1 file changed, 2 insertions(+) -[main 41f27cb] Auto commit: 2024-11-08 20:30:02 - 2 files changed, 7 insertions(+) -hi -[main 4f7c77e] Auto commit: 2024-11-08 20:35:02 - 2 files changed, 7 insertions(+), 2 deletions(-) -ERROR: ssh-agent environment not found, aborting push... -[main 2c8bef4] Auto commit: 2024-11-08 20:40:03 - 3 files changed, 5 insertions(+), 2 deletions(-) -[main 712f0b1] Auto commit: 2024-11-08 20:45:02 - 1 file changed, 2 insertions(+) -[main 1b65254] Auto commit: 2024-11-08 20:50:02 - 1 file changed, 2 insertions(+) -[main c51b6cc] Auto commit: 2024-11-08 20:55:02 - 2 files changed, 3 insertions(+) - create mode 100644 .config/yadm/.gitignore -[main 9dfadaf] Auto commit: 2024-11-08 21:00:02 - 2 files changed, 11 insertions(+) -[main d4bfec3] Auto commit: 2024-11-08 21:05:02 - 2 files changed, 4 insertions(+) -[main b18db45] Auto commit: 2024-11-08 21:10:02 - 3 files changed, 3 insertions(+) -[main 521fcb3] Auto commit: 2024-11-08 21:15:02 - 3 files changed, 3 insertions(+) -[main c9838c5] Auto commit: 2024-11-08 21:20:02 - 2 files changed, 3 insertions(+) -[main ec908f5] Auto commit: 2024-11-08 21:25:02 - 1 file changed, 2 insertions(+) -[main 5f2c50f] Auto commit: 2024-11-08 21:30:02 - 1 file changed, 2 insertions(+) -[main 8a29964] Auto commit: 2024-11-08 21:35:02 - 1 file changed, 2 insertions(+) -[main 77cae5e] Auto commit: 2024-11-08 21:40:02 - 1 file changed, 2 insertions(+) -[main 4ead2ba] Auto commit: 2024-11-08 21:45:02 - 1 file changed, 2 insertions(+) -[main 1410343] Auto commit: 2024-11-08 21:50:02 - 1 file changed, 2 insertions(+) -[main dc5d5ab] Auto commit: 2024-11-08 21:55:02 - 1 file changed, 2 insertions(+) -[main 3f088dd] Auto commit: 2024-11-08 22:00:02 - 1 file changed, 2 insertions(+) -[main 03e28b5] Auto commit: 2024-11-08 22:05:02 - 1 file changed, 2 insertions(+) From cf683f3e51630a7f926caf51d69e91a10abbdfac Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 19:01:18 -0500 Subject: [PATCH 13/23] ignoring tmux --- .config/tmux/plugins/minimal-tmux-status | 1 - .config/tmux/plugins/tmux-sensible | 1 - .config/tmux/plugins/tmux-yank | 1 - .config/tmux/plugins/tpm | 1 - .config/tmux/plugins/vim-tmux-navigator | 1 - 5 files changed, 5 deletions(-) delete mode 160000 .config/tmux/plugins/minimal-tmux-status delete mode 160000 .config/tmux/plugins/tmux-sensible delete mode 160000 .config/tmux/plugins/tmux-yank delete mode 160000 .config/tmux/plugins/tpm delete mode 160000 .config/tmux/plugins/vim-tmux-navigator diff --git a/.config/tmux/plugins/minimal-tmux-status b/.config/tmux/plugins/minimal-tmux-status deleted file mode 160000 index 40108961..00000000 --- a/.config/tmux/plugins/minimal-tmux-status +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 40108961c064241455c180b2533f64f3b196eeca diff --git a/.config/tmux/plugins/tmux-sensible b/.config/tmux/plugins/tmux-sensible deleted file mode 160000 index 25cb91f4..00000000 --- a/.config/tmux/plugins/tmux-sensible +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 25cb91f42d020f675bb0a2ce3fbd3a5d96119efa diff --git a/.config/tmux/plugins/tmux-yank b/.config/tmux/plugins/tmux-yank deleted file mode 160000 index acfd36e4..00000000 --- a/.config/tmux/plugins/tmux-yank +++ /dev/null @@ -1 +0,0 @@ -Subproject commit acfd36e4fcba99f8310a7dfb432111c242fe7392 diff --git a/.config/tmux/plugins/tpm b/.config/tmux/plugins/tpm deleted file mode 160000 index 99469c4a..00000000 --- a/.config/tmux/plugins/tpm +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 99469c4a9b1ccf77fade25842dc7bafbc8ce9946 diff --git a/.config/tmux/plugins/vim-tmux-navigator b/.config/tmux/plugins/vim-tmux-navigator deleted file mode 160000 index a9b52e7d..00000000 --- a/.config/tmux/plugins/vim-tmux-navigator +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a9b52e7d36114d40350099f254b5f299a35df978 From edb5ba1c9841da602f6623f2b39f0aa1d169c06a Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 19:15:02 -0500 Subject: [PATCH 14/23] Auto commit: 2024-11-09 19:15:02 --- .config/nvim/lua/plugins/no-neck-pain.lua | 28 +++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.config/nvim/lua/plugins/no-neck-pain.lua b/.config/nvim/lua/plugins/no-neck-pain.lua index 255d3aad..03f7630b 100644 --- a/.config/nvim/lua/plugins/no-neck-pain.lua +++ b/.config/nvim/lua/plugins/no-neck-pain.lua @@ -1,3 +1,31 @@ +local function mapPrefix(prefix, enabled) + local M = { + enabled = enabled, + toggle = "np", + -- Sets a global mapping to Neovim, which allows you to toggle the left side buffer. + -- When `false`, the mapping is not created. + --- @type string + toggleLeftSide = "nql", + -- Sets a global mapping to Neovim, which allows you to toggle the right side buffer. + -- When `false`, the mapping is not created. + --- @type string + toggleRightSide = "nqr", + -- Sets a global mapping to Neovim, which allows you to increase the width (+5) of the main window. + -- When `false`, the mapping is not created. + --- @type string | { mapping: string, value: number } + widthUp = "n=", + -- Sets a global mapping to Neovim, which allows you to decrease the width (-5) of the main window. + -- When `false`, the mapping is not created. + --- @type string | { mapping: string, value: number } + widthDown = "n-", + -- Sets a global mapping to Neovim, which allows you to toggle the scratchPad feature. + -- When `false`, the mapping is not created. + --- @type string + scratchPad = "ns", + } + + return M +end -- Ok, this plugin is really awesome! -- And everyone should know about it -- game changer!!! return { From 76c74c5d23f47812cb0e078f156aae1da50c4887 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 19:20:02 -0500 Subject: [PATCH 15/23] Auto commit: 2024-11-09 19:20:02 --- .config/nvim/lua/plugins/no-neck-pain.lua | 41 +++++++---------------- 1 file changed, 13 insertions(+), 28 deletions(-) diff --git a/.config/nvim/lua/plugins/no-neck-pain.lua b/.config/nvim/lua/plugins/no-neck-pain.lua index 03f7630b..e1536569 100644 --- a/.config/nvim/lua/plugins/no-neck-pain.lua +++ b/.config/nvim/lua/plugins/no-neck-pain.lua @@ -1,27 +1,14 @@ local function mapPrefix(prefix, enabled) + require("which-key").add({ + { prefix, group = "+NoNeckPain" }, + }) local M = { - enabled = enabled, - toggle = "np", - -- Sets a global mapping to Neovim, which allows you to toggle the left side buffer. - -- When `false`, the mapping is not created. - --- @type string - toggleLeftSide = "nql", - -- Sets a global mapping to Neovim, which allows you to toggle the right side buffer. - -- When `false`, the mapping is not created. - --- @type string - toggleRightSide = "nqr", - -- Sets a global mapping to Neovim, which allows you to increase the width (+5) of the main window. - -- When `false`, the mapping is not created. - --- @type string | { mapping: string, value: number } - widthUp = "n=", - -- Sets a global mapping to Neovim, which allows you to decrease the width (-5) of the main window. - -- When `false`, the mapping is not created. - --- @type string | { mapping: string, value: number } - widthDown = "n-", - -- Sets a global mapping to Neovim, which allows you to toggle the scratchPad feature. - -- When `false`, the mapping is not created. - --- @type string - scratchPad = "ns", + toggle = "p", + toggleLeftSide = "ql", + toggleRightSide = "qr", + widthUp = "=", + widthDown = "-", + scratchPad = "s", } return M @@ -32,14 +19,12 @@ return { "shortcuts/no-neck-pain.nvim", version = "*", opts = function() - require("which-key").add({ - { "n", group = "+NoNeckPain" }, - }) return { width = 120, - mappings = { - enabled = true, - }, + mappings = mapPrefix("N", true), + -- mappings = { + -- enabled = true, + -- }, autocmds = { enableOnVimEnter = true, skipEnteringNoNeckPainBuffer = true, From 6141f5caeae03c99845b5f30311ee07804320e8d Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 19:25:02 -0500 Subject: [PATCH 16/23] Auto commit: 2024-11-09 19:25:02 --- .config/nvim/lua/plugins/no-neck-pain.lua | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.config/nvim/lua/plugins/no-neck-pain.lua b/.config/nvim/lua/plugins/no-neck-pain.lua index e1536569..d07a37c0 100644 --- a/.config/nvim/lua/plugins/no-neck-pain.lua +++ b/.config/nvim/lua/plugins/no-neck-pain.lua @@ -1,8 +1,10 @@ local function mapPrefix(prefix, enabled) + -- create the WK group for the prefix require("which-key").add({ { prefix, group = "+NoNeckPain" }, }) - local M = { + -- define the suffix mappings + local mappings = { toggle = "p", toggleLeftSide = "ql", toggleRightSide = "qr", @@ -10,8 +12,13 @@ local function mapPrefix(prefix, enabled) widthDown = "-", scratchPad = "s", } - - return M + -- concat prefix and suffix + for action, suffix in pairs(mappings) do + mappings[action] = prefix .. suffix + end + -- include the enabled flag + mappings.enabled = enabled + return mappings end -- Ok, this plugin is really awesome! -- And everyone should know about it -- game changer!!! From 45514147f8f9406e5b304eb9fda3be7348cc5e12 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 19:30:02 -0500 Subject: [PATCH 17/23] Auto commit: 2024-11-09 19:30:02 --- .config/nvim/lua/config/keymaps.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/nvim/lua/config/keymaps.lua b/.config/nvim/lua/config/keymaps.lua index 3711a0d1..7bde445e 100644 --- a/.config/nvim/lua/config/keymaps.lua +++ b/.config/nvim/lua/config/keymaps.lua @@ -60,6 +60,9 @@ map({ "n" }, "", "zz", { remap = false }) map({ "n", "x" }, "", "$", { remap = false }) map({ "n", "x" }, "", "0", { remap = false }) +-- easily access null register +map({ "n", "x" }, "n", '"_', { remap = false, silent = true, desc = "Null Register" }) + -- remove the default lazyvim, and also swap H and L (for move cursor) to make more sense on colemak vim.keymap.del({ "n" }, "") vim.keymap.del({ "n" }, "") From cdd2fc5b11b95d5efabffe28d6bf373491b99c9c Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 19:35:02 -0500 Subject: [PATCH 18/23] Auto commit: 2024-11-09 19:35:02 --- .config/lazygit/state.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.config/lazygit/state.yml b/.config/lazygit/state.yml index f1231a43..1b917fcd 100644 --- a/.config/lazygit/state.yml +++ b/.config/lazygit/state.yml @@ -1,6 +1,5 @@ lastupdatecheck: 0 recentrepos: - - /home/fic - /home/fic/cisc/indiv-project - /home/fic/dev/zona - /home/fic/scripts From b0c5545709142be5642b15bf96ad6ef030218b10 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 20:00:02 -0500 Subject: [PATCH 19/23] Auto commit: 2024-11-09 20:00:02 --- .config/nvim/lua/plugins/extend-mini-files.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nvim/lua/plugins/extend-mini-files.lua b/.config/nvim/lua/plugins/extend-mini-files.lua index 39dc97b3..7bddbabf 100644 --- a/.config/nvim/lua/plugins/extend-mini-files.lua +++ b/.config/nvim/lua/plugins/extend-mini-files.lua @@ -27,6 +27,7 @@ return { opts = { mappings = { go_in_plus = "", + synchronize = ":w", -- go_out = "", -- reset = "-", }, From a09558c336812e1b23dd769d28e6f959438c76ee Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 20:05:02 -0500 Subject: [PATCH 20/23] Auto commit: 2024-11-09 20:05:01 --- .config/nvim/lua/plugins/extend-mini-files.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nvim/lua/plugins/extend-mini-files.lua b/.config/nvim/lua/plugins/extend-mini-files.lua index 7bddbabf..dbcfe2ad 100644 --- a/.config/nvim/lua/plugins/extend-mini-files.lua +++ b/.config/nvim/lua/plugins/extend-mini-files.lua @@ -32,6 +32,7 @@ return { -- reset = "-", }, options = { + permanent_delete = false, use_as_default_explorer = true, }, }, From a9db76fabb193329bc30e14c62543888f3b2777b Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 20:10:02 -0500 Subject: [PATCH 21/23] Auto commit: 2024-11-09 20:10:02 --- .config/nvim/lua/plugins/extend-mini-files.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/nvim/lua/plugins/extend-mini-files.lua b/.config/nvim/lua/plugins/extend-mini-files.lua index dbcfe2ad..6c229740 100644 --- a/.config/nvim/lua/plugins/extend-mini-files.lua +++ b/.config/nvim/lua/plugins/extend-mini-files.lua @@ -1,3 +1,6 @@ +local filter_hide = function(fs_entry) + return not vim.startswith(fs_entry.name, ".") +end return { "echasnovski/mini.files", lazy = false, @@ -25,6 +28,9 @@ return { }, }, opts = { + content = { + filter = filter_hide, + }, mappings = { go_in_plus = "", synchronize = ":w", From 0ce5f12fb7b600a29e503ef03cca0951f16dd1a2 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 20:15:02 -0500 Subject: [PATCH 22/23] Auto commit: 2024-11-09 20:15:02 --- .config/nvim/lua/plugins/extend-mini-files.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/nvim/lua/plugins/extend-mini-files.lua b/.config/nvim/lua/plugins/extend-mini-files.lua index 6c229740..9bf6af89 100644 --- a/.config/nvim/lua/plugins/extend-mini-files.lua +++ b/.config/nvim/lua/plugins/extend-mini-files.lua @@ -1,6 +1,3 @@ -local filter_hide = function(fs_entry) - return not vim.startswith(fs_entry.name, ".") -end return { "echasnovski/mini.files", lazy = false, @@ -29,7 +26,10 @@ return { }, opts = { content = { - filter = filter_hide, + -- hide hidden files by default + filter = function(fs_entry) + return not vim.startswith(fs_entry.name, ".") + end, }, mappings = { go_in_plus = "", From 3b125ef0f965efa3d03c56620be646a03f85a84b Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 9 Nov 2024 20:38:13 -0500 Subject: [PATCH 23/23] removed state.yml from tracking --- .config/lazygit/state.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .config/lazygit/state.yml diff --git a/.config/lazygit/state.yml b/.config/lazygit/state.yml deleted file mode 100644 index 1b917fcd..00000000 --- a/.config/lazygit/state.yml +++ /dev/null @@ -1,16 +0,0 @@ -lastupdatecheck: 0 -recentrepos: - - /home/fic/cisc/indiv-project - - /home/fic/dev/zona - - /home/fic/scripts -startuppopupversion: 5 -lastversion: 0.44.1 -customcommandshistory: [] -hidecommandlog: false -ignorewhitespaceindiffview: false -diffcontextsize: 3 -renamesimilaritythreshold: 50 -localbranchsortorder: recency -remotebranchsortorder: alphabetical -gitlogorder: topo-order -gitlogshowgraph: always