From 8b8c09a722c27dbe1e2c3276decb23d618dbada6 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Mon, 1 May 2023 21:41:43 -0700 Subject: [PATCH 1/3] nvim: remap toggleterm open to F12 (reverting change) --- .config/nvim/lua/blake/other.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/blake/other.lua b/.config/nvim/lua/blake/other.lua index 239ced8..9d219bc 100644 --- a/.config/nvim/lua/blake/other.lua +++ b/.config/nvim/lua/blake/other.lua @@ -40,7 +40,7 @@ M.toggleterm = function() return vim.o.columns * 0.4 end end, - open_mapping = [[]], + open_mapping = [[]], hide_numbers = true, -- hide the number column in toggleterm buffers shading_factor = '1', -- the degree by which to darken to terminal colour, default: 1 for dark backgrounds, 3 for light start_in_insert = true, From fceac85610d70e4b4cb5f9a6b30c7569fa0c26f8 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Mon, 1 May 2023 21:43:49 -0700 Subject: [PATCH 2/3] nvim: add alejandra to formatters --- .config/nvim/lua/blake/plugins.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nvim/lua/blake/plugins.lua b/.config/nvim/lua/blake/plugins.lua index 9fe9ddb..fcbd479 100644 --- a/.config/nvim/lua/blake/plugins.lua +++ b/.config/nvim/lua/blake/plugins.lua @@ -196,6 +196,7 @@ return require('packer').startup({function() require("null-ls").setup({ sources = { null_ls.builtins.code_actions.refactoring, + null_ls.builtins.formatting.alejandra, null_ls.builtins.formatting.jq, } }) From bdc26fadb0bd419394f01f951313ce5d4311be1c Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Fri, 5 May 2023 12:00:21 -0700 Subject: [PATCH 3/3] git: add alias f for fetch --- .gitconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitconfig b/.gitconfig index 2721a7f..2a8bf67 100644 --- a/.gitconfig +++ b/.gitconfig @@ -24,6 +24,7 @@ caps = !git commit -a && git push ch = checkout d = diff + f = fetch lg = log ok = pull pl = pull