Files
dotfiles/.config/nvim/lua/core/options.lua
T
cdanesi 28c75e157a migrate from packer to lazy
most of my config has been carried over, still need to do colorizer
and markdown.

added a few new plugins, based off of josean's 2024 video
2024-10-31 16:45:27 -04:00

47 lines
870 B
Lua

vim.cmd("let g:netrw_liststyle = 3")
local opt = vim.opt
-- line numbers
opt.number = true
opt.relativenumber = true
-- tabs & indents
opt.tabstop = 3
opt.softtabstop = 3
opt.shiftwidth = 3
opt.expandtab = true
opt.smartindent = true
opt.autoindent = true
-- disable line wrapping
opt.wrap = false
-- search
opt.ignorecase = true
opt.smartcase = true
opt.iskeyword:append("-") -- consider string-string as a whole word
-- cursor line
opt.cursorline = true
-- appearance
opt.termguicolors = true
opt.background = "dark"
opt.signcolumn = "yes"
opt.colorcolumn = "90"
-- backspace
opt.backspace = "indent,eol,start"
-- clipboard
opt.clipboard:append("unnamedplus") -- use system clipboard as the default register
-- split windows
opt.splitright = true
opt.splitbelow = true
-- save me
opt.undodir = os.getenv("HOME") .. "/.config/nvim/.undo"
opt.undofile = true