made some changes
This commit is contained in:
parent
43adc56045
commit
82a1b08a9c
13 changed files with 640 additions and 1335 deletions
30
lua/settings.lua
Normal file
30
lua/settings.lua
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
vim.g.have_nerd_font = true
|
||||
vim.scriptencoding = 'utf-8'
|
||||
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.mouse = 'a'
|
||||
vim.opt.showmode = false
|
||||
vim.opt.fileencoding = 'utf-8'
|
||||
vim.opt.title = true
|
||||
vim.opt.clipboard = 'unnamedplus'
|
||||
|
||||
vim.opt.breakindent = true
|
||||
vim.opt.undofile = true
|
||||
vim.opt.ignorecase = true
|
||||
vim.opt.smartcase = true
|
||||
vim.opt.expandtab = true
|
||||
vim.opt.tabstop = 2
|
||||
vim.opt.shiftwidth = 2
|
||||
vim.opt.autoindent = true
|
||||
vim.opt.smartindent = true
|
||||
vim.opt.signcolumn = 'yes'
|
||||
vim.opt.updatetime = 250
|
||||
vim.opt.timeoutlen = 300
|
||||
vim.opt.splitright = true
|
||||
vim.opt.splitbelow = true
|
||||
vim.opt.list = true
|
||||
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
|
||||
vim.opt.inccommand = 'split'
|
||||
vim.opt.cursorline = true
|
||||
vim.opt.scrolloff = 10
|
||||
Loading…
Add table
Add a link
Reference in a new issue