summaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-05-15 18:10:58 -0500
committerToby Vincent <tobyv13@gmail.com>2023-05-15 18:10:58 -0500
commitae7808bba634dc5b481353e7a581f885f438db50 (patch)
tree70fa07ec7f4a9ae386cbe7c42ec333e04549113f /nvim
parent547f08bf12914faa9219c9260425d31ee9e96be4 (diff)
fix(nvim): fix incorrect options and highlight
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/plugins/gruvbox.lua2
-rw-r--r--nvim/.config/nvim/lua/tobyvin/options.lua4
2 files changed, 3 insertions, 3 deletions
diff --git a/nvim/.config/nvim/lua/plugins/gruvbox.lua b/nvim/.config/nvim/lua/plugins/gruvbox.lua
index 1a84cea..7399001 100644
--- a/nvim/.config/nvim/lua/plugins/gruvbox.lua
+++ b/nvim/.config/nvim/lua/plugins/gruvbox.lua
@@ -16,7 +16,7 @@ local M = {
IndentContext4 = { link = "GruvboxGreen" },
IndentContext5 = { link = "GruvboxAqua" },
IndentContext6 = { link = "GruvboxBlue" },
- IndentContext7 = { link = "GruvboxViolet" },
+ IndentContext7 = { link = "GruvboxPurple" },
-- See: https://github.com/ellisonleao/gruvbox.nvim/pull/255
["@lsp.type.class"] = { link = "@type" },
diff --git a/nvim/.config/nvim/lua/tobyvin/options.lua b/nvim/.config/nvim/lua/tobyvin/options.lua
index d144b45..9032d93 100644
--- a/nvim/.config/nvim/lua/tobyvin/options.lua
+++ b/nvim/.config/nvim/lua/tobyvin/options.lua
@@ -9,7 +9,7 @@ vim.opt.breakindent = true
vim.opt.clipboard = "unnamedplus"
vim.opt.colorcolumn = "+0"
vim.opt.completeopt = { "menuone", "noselect", "noinsert" }
-vim.opt.conceallevel = 3
+vim.opt.conceallevel = 2
vim.opt.cursorline = true
vim.opt.cursorlineopt = "number"
vim.opt.expandtab = true
@@ -44,7 +44,7 @@ vim.opt.spelloptions = { "camel", "noplainbuffer" }
vim.opt.splitbelow = true
vim.opt.splitright = true
vim.opt.swapfile = false
-vim.opt.switchbuf = "useopen,split,uselast"
+vim.opt.switchbuf = { "useopen", "split", "uselast" }
vim.opt.tabstop = 4
vim.opt.termguicolors = true
vim.opt.textwidth = 100