doc
This commit is contained in:
parent
871d867f50
commit
094207c6d1
6
init.lua
6
init.lua
|
@ -6,10 +6,16 @@ vim.g.maplocalleader = ' '
|
||||||
|
|
||||||
-- Custom remaps
|
-- Custom remaps
|
||||||
vim.keymap.set('n', '!', '_') -- For macos only
|
vim.keymap.set('n', '!', '_') -- For macos only
|
||||||
|
|
||||||
|
-- Center the view when moving
|
||||||
vim.keymap.set('n', '<C-d>', '<C-d>zz')
|
vim.keymap.set('n', '<C-d>', '<C-d>zz')
|
||||||
vim.keymap.set('n', '<C-u>', '<C-u>zz')
|
vim.keymap.set('n', '<C-u>', '<C-u>zz')
|
||||||
|
|
||||||
|
-- Access to file viewer easily
|
||||||
vim.keymap.set('n', '<leader>pv', vim.cmd.Ex)
|
vim.keymap.set('n', '<leader>pv', vim.cmd.Ex)
|
||||||
|
|
||||||
|
-- End of custom remaps
|
||||||
|
|
||||||
-- Set to true if you have a Nerd Font installed and selected in the terminal
|
-- Set to true if you have a Nerd Font installed and selected in the terminal
|
||||||
vim.g.have_nerd_font = false
|
vim.g.have_nerd_font = false
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue