i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add terminal movement mappings and don't remember size

+10 -4
+9 -4
nvim/.config/nvim/lua/keymaps.lua
··· 9 9 -- map('n', 'g#', "g#<Cmd>lua require('hlslens').start()<CR>", silent) 10 10 -- map('n', '<Esc>', '<Cmd>noh<CR>', silent) 11 11 12 - map("n", "<C-k>", "<C-w><C-k>") 13 - map("n", "<C-j>", "<C-w><C-j>") 14 - map("n", "<C-l>", "<C-w><C-l>") 15 - map("n", "<C-h>", "<C-w><C-h>") 12 + map("n", "<C-h>", "<Cmd>wincmd h<CR>") 13 + map("n", "<C-j>", "<Cmd>wincmd j<CR>") 14 + map("n", "<C-k>", "<Cmd>wincmd k<CR>") 15 + map("n", "<C-l>", "<Cmd>wincmd l<CR>") 16 + 17 + map("t", "<C-h>", "<Cmd>wincmd h<CR>") 18 + map("t", "<C-j>", "<Cmd>wincmd j<CR>") 19 + map("t", "<C-k>", "<Cmd>wincmd k<CR>") 20 + map("t", "<C-l>", "<Cmd>wincmd l<CR>") 16 21 17 22 -- why does this not work :( 18 23 --map('i', '<Esc>', 'pumvisible() ? "<C-e><Esc>" : "<Esc>"', { silent = true, expr = true } )
+1
nvim/.config/nvim/lua/plugins.lua
··· 449 449 opts = { 450 450 open_mapping = "<C-q>", 451 451 shading_factor = "0", 452 + persist_size = false, 452 453 }, 453 454 }, 454 455