This repository has been archived on 2025-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/config/nvim/lua/options.lua
“Henry-Hiles” 6ca41923e5 Initial Commit
2022-10-25 10:16:39 -04:00

25 lines
667 B
Lua

vim.g.sudo_smart_edit = 1
vim.opt.shiftwidth = 0
vim.opt.backup = false
vim.opt.clipboard = "unnamedplus"
vim.opt.cmdheight = 1;
vim.opt.completeopt = { "menuone", "noselect" }
vim.opt.fileencoding = "utf-8"
vim.opt.hlsearch = true
vim.opt.ignorecase = true
vim.opt.writebackup = false
vim.opt.updatetime = 300
vim.opt.undofile = true
vim.opt.termguicolors = true
vim.opt.cursorline = true
vim.opt.mouse = "a"
vim.opt.smartindent = true
vim.opt.autoindent = true
vim.opt.number = true
vim.opt.relativenumber = false
vim.opt.signcolumn = "yes"
vim.opt.scrolloff = 8
vim.opt.sidescrolloff = 8
vim.pumheight = 10
vim.opt.swapfile = false
vim.opt.shortmess:append "mnrw"