N2Vim/lua/options.lua
2024-12-10 09:51:50 +08:00

16 lines
317 B
Lua

vim.opt.clipboard = 'unnamedplus' -- use system clipboard
vim.opt.mouse = 'a' -- allow the mouse to be used in Nvim
-- Tab -> Space
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
-- UI Config
vim.opt.number = true
vim.opt.splitbelow = true
vim.opt.splitright = true