Initial commit

This commit is contained in:
Saeed Afzal
2022-03-09 12:31:08 +00:00
commit 847914b7ea
18 changed files with 349 additions and 0 deletions

18
lua/core/settings.lua Normal file
View File

@@ -0,0 +1,18 @@
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