mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-23 17:28:50 +02:00
add: key maps CTRL + A
This commit is contained in:
parent
549a63a3da
commit
835cea9f5e
2 changed files with 4 additions and 3 deletions
|
@ -118,7 +118,7 @@ return {
|
|||
local mode = {
|
||||
"mode",
|
||||
padding = 1,
|
||||
separator = { left = "" },
|
||||
separator = { left = " " },
|
||||
-- right_padding = 3,
|
||||
fmt = function(str)
|
||||
return " " .. str
|
||||
|
@ -166,7 +166,7 @@ return {
|
|||
lualine_x = { diff, spaces, "filetype" },
|
||||
lualine_y = { "progress" },
|
||||
lualine_z = {
|
||||
{ "location", separator = { right = "" }, padding = 1 },
|
||||
{ "location", separator = { right = " " }, padding = 1 },
|
||||
},
|
||||
},
|
||||
inactive_sections = {
|
||||
|
|
|
@ -45,7 +45,8 @@ keymap("n", "<C-h>", "<C-w>h", opts)
|
|||
keymap("n", "<C-j>", "<C-w>j", opts)
|
||||
keymap("n", "<C-k>", "<C-w>k", opts)
|
||||
keymap("n", "<C-l>", "<C-w>l", opts)
|
||||
keymap("n", "<C-A>", "ggVG", opts)
|
||||
keymap("n", "<C-A>", "gg0v$G", opts)
|
||||
keymap("i", "<C-A>", "<esc>gg0v$G", opts)
|
||||
keymap("n", "<C-c>", '"+y', opts)
|
||||
keymap("v", "<C-c>", '"+y', opts)
|
||||
keymap("x", "<C-c>", '"+y', opts)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue