16 lines
366 B
Lua
16 lines
366 B
Lua
|
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")
|
||
|
|