summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackson Taylor <jtaylor@classicalconversations.com>2023-06-19 16:32:43 -0400
committerJackson Taylor <jtaylor@classicalconversations.com>2023-06-19 16:32:43 -0400
commit6d04c3ce1b49aa1b997ca90bce7fddd48af3073f (patch)
tree9ae753098b9d1bb6f79fe9913bd4f0f644013e8c
parent78e99455cc3ec165982590f8b8c22284ec67a75f (diff)
Disable showmode
While using airline, it shows your mode at the bottom anyway. So there's no need for it twice.
-rw-r--r--lua/jacksontaylorxyz/basic.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/jacksontaylorxyz/basic.lua b/lua/jacksontaylorxyz/basic.lua
index 06e030f..6ea682d 100644
--- a/lua/jacksontaylorxyz/basic.lua
+++ b/lua/jacksontaylorxyz/basic.lua
@@ -22,6 +22,7 @@ vim.opt.timeoutlen = 1000 -- This is mostly used for whichkey, it'
vim.opt.mouse = nil -- Disable all mouse support
vim.opt.foldmethod = 'indent' -- Folds via the indent in a file
vim.opt.foldlevel = 20 -- Opens 20 levels of folds when nvim starts up
+vim.opt.showmode = false -- Does not show "-- INSERT --" at the bottom of the window
vim.g.mapleader = " " -- Leader key used in custom mappings