add zen plugin, remap cleanup/combination, add more languages to treesitter

This commit is contained in:
Oliver Ladner 2023-12-05 15:50:20 +01:00
commit cbd4c176ef
8 changed files with 218 additions and 188 deletions

View file

@ -9,7 +9,7 @@ vim.opt.number = true
vim.opt.relativenumber = true
-- Separate sign colum (extra column for Git/LSP)
vim.wo.signcolumn = 'yes'
vim.wo.signcolumn = "yes"
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
@ -17,7 +17,7 @@ vim.opt.shiftwidth = 4
vim.opt.expandtab = true -- indent using spaces instead of <Tab>
-- highlight columns
vim.opt.colorcolumn = '80,120'
vim.opt.colorcolumn = "80,120"
-- Sync clipboard between OS and Neovim.
-- Remove this option if you want your OS clipboard to remain independent.
@ -40,13 +40,13 @@ vim.opt.scrolloff = 5
vim.opt.wrap = false
vim.opt.termguicolors = true
vim.opt.background = 'dark' -- light, dark
vim.opt.background = "dark" -- light, dark
-- Themes: duskfox, tokyonight-night, tokyonight-storm, tokyonight-day, tokyonight-moon
vim.cmd.colorscheme 'tokyonight-storm'
vim.cmd.colorscheme("tokyonight-storm")
-- Decrease update time
vim.opt.updatetime = 250
vim.opt.timeoutlen = 300
-- Set completeopt to have a better completion experience
vim.opt.completeopt = 'menuone,noselect'
vim.opt.completeopt = "menuone,noselect"