From c80697b49d1d3405042527ad87d4b127e9f4fa50 Mon Sep 17 00:00:00 2001 From: Zach Drone Date: Tue, 3 Dec 2024 00:47:15 -0500 Subject: [PATCH] add jk --- lua/custom/keymaps.lua | 1 + lua/custom/options.lua | 4 ++++ 2 files changed, 5 insertions(+) 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