diff --git a/.config/fish/functions/lg.fish b/.config/fish/functions/lg.fish new file mode 100644 index 0000000..8737a82 --- /dev/null +++ b/.config/fish/functions/lg.fish @@ -0,0 +1,4 @@ +function lg --wraps=lazygit --description 'alias lg=lazygit' + lazygit $argv + +end diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 47556bd..60fc503 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -157,6 +157,7 @@ vim.opt.cursorline = true -- Minimal number of screen lines to keep above and below the cursor. vim.opt.scrolloff = 10 +vim.opt.list = false vim.opt.tabstop = 2 vim.opt.shiftwidth = 2 -- [[ Basic Keymaps ]] @@ -933,10 +934,10 @@ require("lazy").setup({ incremental_selection = { enable = true, keymaps = { - init_selection = "gnn", - node_incremental = "grn", - scope_incremental = "grc", - node_decremental = "grm", + init_selection = "", + scope_incremental = "", + node_incremental = "", + node_decremental = "", }, }, },