nvim-config/lua/core/config.lua

21 lines
344 B
Lua
Raw Permalink Normal View History

2026-01-12 23:11:27 +00:00
-- Line numbers
vim.wo.nu = true
vim.wo.relativenumber = true
-- Mouse enable
vim.opt.mouse = "a"
vim.opt.mousefocus = true
-- Clipboard
vim.opt.clipboard ="unnamedplus"
-- Indent Settings
vim.opt.shiftwidth = 4
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
-- Other
vim.opt.scrolloff = 8
vim.opt.wrap = false
vim.opt.termguicolors = true