tidy-up: Organize dot files
This commit is contained in:
parent
456046c4a7
commit
51973fcbf4
18 changed files with 3 additions and 3 deletions
24
.config/nvim/lua/config/editor.lua
Normal file
24
.config/nvim/lua/config/editor.lua
Normal file
|
@ -0,0 +1,24 @@
|
|||
vim.opt.tabstop = 4
|
||||
vim.opt.softtabstop = 4
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.expandtab = true
|
||||
vim.opt.smartindent = true
|
||||
|
||||
vim.opt.nu = false
|
||||
vim.opt.relativenumber = true
|
||||
|
||||
vim.opt.wrap = false
|
||||
|
||||
vim.opt.termguicolors = true
|
||||
vim.opt.swapfile = false
|
||||
vim.opt.backup = false
|
||||
vim.opt.undofile = true
|
||||
|
||||
vim.g.moonflyNormalFloat = true
|
||||
vim.g.moonflyTransparent = true
|
||||
vim.g.moonflyUndercurls = false
|
||||
|
||||
vim.o.updatetime = 300
|
||||
vim.o.incsearch = false
|
||||
|
||||
vim.lsp.buf.signature_help = true
|
Loading…
Add table
Add a link
Reference in a new issue