changes
This commit is contained in:
parent
926ba239ce
commit
ac6ba45b85
8 changed files with 163 additions and 79 deletions
|
@ -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'}})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue