merged laptop into master

This commit is contained in:
paul-loedige
2023-02-22 17:54:22 +01:00
parent 3280a62cac
commit 61dc1712af
8 changed files with 60 additions and 34 deletions
+16 -1
View File
@@ -54,6 +54,7 @@ let mapleader=" " " set mapleader to space
let maplocalleader=" " " set localleader to space
set timeoutlen=1000 " set timeout length
set spell " activate spell-checking
setlocal spelllang=de,en_us " enable German and English spell checking
set nocompatible " disable compatibility to old-time vi
let g:indentLine_setConceal = 0 " disable the conceal 'feature' of indentLine plugin
set showmatch " show matching brackets.
@@ -193,7 +194,21 @@ highlight CursorLineNr ctermfg=7
lua <<EOF
require'nvim-treesitter.configs'.setup {
-- One of "all", "maintained" (parsers with maintainers), or a list of languages
ensure_installed = "maintained",
ensure_installed = {
"bash", "bibtex",
"c", "cmake", "comment", "cpp", "css",
"diff", "dockerfile", "dot",
"gitattributes", "gitignore",
"html", "http",
"javascript", "json", "json5",
"latex", "lua",
"make", "markdown", "markdown_inline",
"python",
"regex",
"sql",
"toml", "typescript",
"vim",
"yaml"},
-- Install languages synchronously (only applied to `ensure_installed`)
sync_install = false,