mirror of
https://github.com/Ascyii/nvim.git
synced 2026-01-01 04:04:24 -05:00
19 lines
305 B
Lua
19 lines
305 B
Lua
vim.o.shiftwidth = 4;
|
|
vim.o.tabstop = 4;
|
|
vim.o.number = true;
|
|
vim.o.ignorecase = true;
|
|
|
|
-- Disable mouse completly
|
|
vim.o.mouse = "";
|
|
|
|
-- Turn on undofile
|
|
vim.o.udf = true;
|
|
|
|
-- Enable more colors
|
|
vim.opt.termguicolors = true
|
|
|
|
vim.g.loaded_netrw = 1
|
|
vim.g.loaded_netrwPlugin = 1
|
|
|
|
vim.opt.signcolumn = "yes"
|