dotfiles/config/nvim/lua/augustogunsch/options.lua

30 lines
461 B
Lua
Raw Permalink Normal View History

2023-11-11 12:25:46 -05:00
-- Disable newtrw
-- required by nvim-tree
vim.opt.guicursor = ""
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.g.mapleader = " "
vim.opt.termguicolors = true
vim.opt.expandtab = true
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.list = true
vim.opt.listchars = {
tab = "",
lead = "·",
trail = "~",
extends = ">",
precedes = "<"
}
vim.opt.number = true
vim.opt.relativenumber = true
-- To avoid bad habits
vim.opt.mouse = ""