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"