Simplify + add whichkey mappings

This commit is contained in:
Saeed Afzal
2022-05-14 20:52:22 +01:00
parent 694e5ea596
commit 4051562d0d
16 changed files with 99 additions and 289 deletions

View File

@@ -1 +1,18 @@
require("core.settings")
local opt = vim.opt
local g = vim.g
g.mapleader = " "
opt.backup = false
opt.swapfile = false
opt.termguicolors = true
opt.number = true
opt.mouse = "a"
opt.cursorline = true
opt.hidden = true
-- Indentation
opt.expandtab = true
opt.smartindent = true
opt.shiftwidth = 4
opt.tabstop = 4

View File

@@ -1,18 +0,0 @@
local opt = vim.opt
local g = vim.g
g.mapleader = " "
opt.backup = false
opt.swapfile = false
opt.termguicolors = true
opt.number = true
opt.mouse = "a"
opt.cursorline = true
opt.hidden = true
-- Indentation
opt.expandtab = true
opt.smartindent = true
opt.shiftwidth = 4
opt.tabstop = 4