From f9df0605c0858f6ce05f4a3eb1f68ac326231c25 Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Mon, 15 Apr 2024 13:18:15 -0400 Subject: [PATCH] bleh --- lua/options.lua | 6 +++--- lua/remaps.lua | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/options.lua b/lua/options.lua index caaa658..037d8b8 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -6,12 +6,12 @@ local g = vim.g g.toggle_theme_icon = "  " -------------------------------------- options ------------------------------------------ -o.laststatus = 3 +o.laststatus = 3 -- this line is necessary otherwise statusline breaks o.showmode = false o.clipboard = "unnamedplus" o.cursorline = true -o.cursorlineopt = "number" +-- o.cursorlineopt = "number" -- Indenting o.expandtab = true @@ -29,7 +29,7 @@ o.mousemodel = "extend" -- Numbers o.number = true o.numberwidth = 2 -o.ruler = false +o.ruler = true -- disable nvim intro opt.shortmess:append "sI" diff --git a/lua/remaps.lua b/lua/remaps.lua index d256b93..6b81ab8 100644 --- a/lua/remaps.lua +++ b/lua/remaps.lua @@ -8,6 +8,7 @@ map("n", "", "l", { desc = "Switch Window right" }) map("n", "", "j", { desc = "Switch Window down" }) map("n", "", "k", { desc = "Switch Window up" }) map("n", "qq", ":wa:qa") +map("i", "jk", "") -- telescope keybinds local builtin = require "telescope.builtin"