nvim-config/lua/vim_options.lua

17 lines
392 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
2024-05-16 22:11:48 +00:00
vim.opt.cursorline = true
2024-04-30 10:24:23 +00:00
-- Instant.nvim for Live Share function
require("instant_options")