diff --git a/lua/custom/keymaps.lua b/lua/custom/keymaps.lua index 30177eaa..dd3bacb2 100644 --- a/lua/custom/keymaps.lua +++ b/lua/custom/keymaps.lua @@ -2,3 +2,4 @@ local builtin = require 'telescope.builtin' vim.keymap.set('n', 'sv', 'v', { desc = 'Open verticle split' }) vim.keymap.set('n', 'sh', 'h', { desc = 'Open horizontal split' }) vim.keymap.set('n', '', builtin.git_files, {}) +vim.keymap.set('i', 'jk', '') diff --git a/lua/custom/options.lua b/lua/custom/options.lua index 575305ff..57f5e868 100644 --- a/lua/custom/options.lua +++ b/lua/custom/options.lua @@ -4,3 +4,7 @@ opt.tabstop = 2 opt.shiftwidth = 2 opt.expandtab = true opt.autoindent = true +opt.relativenumber = true +opt.number = true + +opt.wrap = false