aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config/nvim/lua/tobyvin
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/.config/nvim/lua/tobyvin')
-rw-r--r--nvim/.config/nvim/lua/tobyvin/options.lua52
1 files changed, 14 insertions, 38 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/options.lua b/nvim/.config/nvim/lua/tobyvin/options.lua
index 5fae5f0..f43a26d 100644
--- a/nvim/.config/nvim/lua/tobyvin/options.lua
+++ b/nvim/.config/nvim/lua/tobyvin/options.lua
@@ -4,35 +4,38 @@ vim.opt.autoindent = true
vim.opt.background = "dark"
vim.opt.backspace = { "indent", "start", "eol" }
vim.opt.breakindent = true
-vim.opt.clipboard = vim.opt.clipboard + "unnamedplus"
+vim.opt.clipboard = "unnamedplus"
vim.opt.colorcolumn = "+0"
vim.opt.completeopt = { "menuone", "noselect", "noinsert" }
+vim.opt.conceallevel = 3
vim.opt.cursorline = true
vim.opt.expandtab = true
+vim.opt.formatoptions = "cqrnj"
vim.opt.hidden = true
vim.opt.hlsearch = true
vim.opt.ignorecase = true
vim.opt.inccommand = "split"
-vim.opt.incsearch = true
-vim.opt.laststatus = 2
-vim.opt.laststatus = 3
vim.opt.linebreak = true
vim.opt.mouse = "a"
vim.opt.number = true
+vim.opt.pumblend = 10
+vim.opt.pumheight = 10
vim.opt.relativenumber = true
vim.opt.scrolloff = 10
+vim.opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize", "winpos" }
vim.opt.shell = "zsh"
vim.opt.shiftround = true
vim.opt.shiftwidth = 0
-vim.opt.shortmess = vim.opt.shortmess + "c"
-vim.opt.showbreak = string.rep(" ", 3) -- Make it so that long lines wrap smartly
+vim.opt.showmode = false
+vim.opt.shortmess:append("c")
+vim.opt.showbreak = string.rep(" ", 3)
vim.opt.showmatch = true
vim.opt.sidescrolloff = 2
vim.opt.signcolumn = "yes:1"
vim.opt.smartcase = true
+vim.opt.smartindent = true
vim.opt.smarttab = true
vim.opt.softtabstop = 0
-vim.opt.spellfile = vim.fn.stdpath("config") .. "/spell/en.utf-8.add"
vim.opt.spelllang = "en_us"
vim.opt.spelloptions = { "camel", "noplainbuffer" }
vim.opt.splitbelow = true
@@ -41,36 +44,9 @@ vim.opt.swapfile = false
vim.opt.tabstop = 4
vim.opt.termguicolors = true
vim.opt.textwidth = 100
-vim.opt.timeoutlen = 1000
+vim.opt.timeoutlen = 300
vim.opt.undofile = true
-vim.opt.updatetime = 500
-vim.opt.wildignore = vim.opt.wildignore + { "*.o", "*.rej", "*.so" }
+vim.opt.updatetime = 200
+vim.opt.wildignore = { "*.o", "*.rej", "*.so" }
+vim.opt.wildmode = "longest:full,full"
vim.opt.wrap = false
-vim.opt.listchars = {
- eol = "↵",
- tab = "»-",
- trail = "·",
- extends = "…",
- precedes = "…",
-}
-vim.opt.sessionoptions = {
- "blank",
- "buffers",
- "curdir",
- "folds",
- "help",
- "tabpages",
- "winsize",
- "winpos",
- "terminal",
-}
-vim.opt.formatoptions = vim.opt.formatoptions
- - "a" -- Auto formatting is BAD.
- - "t" -- Don't auto format my code. I got linters for that.
- + "c" -- In general, I like it when comments respect textwidth
- + "q" -- Allow formatting comments w/ gq
- - "o" -- O and o, don't continue comments
- + "r" -- But do continue when pressing enter.
- + "n" -- Indent past the formatlistpat, not underneath it.
- + "j" -- Auto-remove comments if possible.
- - "2" -- I'm not in gradeschool anymore