nvim-config/lua/vim_options.lua

16 lines
366 B
Lua
Raw Normal View History

2024-04-30 10:24:23 +00:00
vim.opt.expandtab = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.o.background = "dark"
vim.g.mapleader = " "
vim.opt.breakindent = true
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.fillchars="eob: " -- Remove the trailing ~s
vim.opt.showmode = false
-- Instant.nvim for Live Share function
require("instant_options")