This commit is contained in:
DavidOnTop 2023-12-07 22:04:29 +00:00
parent 926ba239ce
commit ac6ba45b85
No known key found for this signature in database
GPG key ID: FAB914DDC2F180EB
8 changed files with 163 additions and 79 deletions

View file

@ -5,9 +5,10 @@ vim.opt.relativenumber = true
-- tab && indent
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.softtabstop = 0
--vim.opt.noexpandtab = true
vim.cmd("set expandtab")
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.o.breakindent = true
@ -31,7 +32,7 @@ vim.o.smartcase = true
-- colors
vim.opt.termguicolors = true
vim.cmd("colorscheme carbonfox")
vim.cmd("colorscheme monokai-pro")
vim.opt.cursorline = true
vim.opt.cursorcolumn = true
@ -52,3 +53,5 @@ vim.o.mouse = "a"
vim.opt.showmode = false
vim.o.completeopt = "menuone,noselect"
vim.filetype.add({extension = {leaf = 'html'}})