aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/general.lua
diff options
context:
space:
mode:
authorLuca Matei Pintilie <lucafulger@gmail.com>2023-04-10 19:43:30 +0000
committerLuca Matei Pintilie <lucafulger@gmail.com>2023-04-10 19:43:30 +0000
commitc35810e74dab73c7eef14322cebbc9405037c3b0 (patch)
tree3577765706f2c471c4da9d0503f94d3d010902ad /.config/nvim/lua/general.lua
parenta8b325d57a8a1084bf6f2bd660773873d174abae (diff)
downloaddotfiles-c35810e74dab73c7eef14322cebbc9405037c3b0.tar
dotfiles-c35810e74dab73c7eef14322cebbc9405037c3b0.tar.gz
dotfiles-c35810e74dab73c7eef14322cebbc9405037c3b0.tar.bz2
dotfiles-c35810e74dab73c7eef14322cebbc9405037c3b0.tar.lz
dotfiles-c35810e74dab73c7eef14322cebbc9405037c3b0.tar.xz
dotfiles-c35810e74dab73c7eef14322cebbc9405037c3b0.tar.zst
dotfiles-c35810e74dab73c7eef14322cebbc9405037c3b0.zip
Bump neovim config to 0.9 and add undotree and test related commands
Diffstat (limited to '')
-rw-r--r--.config/nvim/lua/general.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/nvim/lua/general.lua b/.config/nvim/lua/general.lua
index 255a111..fc4eb88 100644
--- a/.config/nvim/lua/general.lua
+++ b/.config/nvim/lua/general.lua
@@ -11,7 +11,6 @@ vim.opt.wrap = false
vim.opt.colorcolumn = "120"
vim.opt.scrolloff = 5
vim.opt.spelllang = "en,nb"
-vim.opt.spell = false
vim.opt.cursorline = true
-- vim.opt.tabstop = 4
@@ -41,6 +40,8 @@ vim.opt.listchars:append("tab:-->")
vim.cmd [[colorscheme dracula]]
vim.cmd [[hi Normal guibg=NONE ctermbg=NONE]]
+vim.opt.spell = false
+
vim.g.markdown_fenced_languages = {
"ts=typescript";
"xml";