chngs
This commit is contained in:
parent
4ccd1d30c0
commit
aaf3eea8a7
2 changed files with 9 additions and 4 deletions
4
.config/fish/functions/lg.fish
Normal file
4
.config/fish/functions/lg.fish
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
function lg --wraps=lazygit --description 'alias lg=lazygit'
|
||||||
|
lazygit $argv
|
||||||
|
|
||||||
|
end
|
|
@ -157,6 +157,7 @@ vim.opt.cursorline = true
|
||||||
-- Minimal number of screen lines to keep above and below the cursor.
|
-- Minimal number of screen lines to keep above and below the cursor.
|
||||||
vim.opt.scrolloff = 10
|
vim.opt.scrolloff = 10
|
||||||
|
|
||||||
|
vim.opt.list = false
|
||||||
vim.opt.tabstop = 2
|
vim.opt.tabstop = 2
|
||||||
vim.opt.shiftwidth = 2
|
vim.opt.shiftwidth = 2
|
||||||
-- [[ Basic Keymaps ]]
|
-- [[ Basic Keymaps ]]
|
||||||
|
@ -933,10 +934,10 @@ require("lazy").setup({
|
||||||
incremental_selection = {
|
incremental_selection = {
|
||||||
enable = true,
|
enable = true,
|
||||||
keymaps = {
|
keymaps = {
|
||||||
init_selection = "gnn",
|
init_selection = "<CR>",
|
||||||
node_incremental = "grn",
|
scope_incremental = "<CR>",
|
||||||
scope_incremental = "grc",
|
node_incremental = "<TAB>",
|
||||||
node_decremental = "grm",
|
node_decremental = "<S-TAB>",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue