Compare commits

...

3 Commits

Author SHA1 Message Date
David JULIEN 4493f7a73b
Merge branch 'dev' into thesis
nvim: add treesitter support for rust
git: fetch submodules on-demand
2022-12-05 14:11:21 +01:00
David JULIEN c0ec146fc2 [git] feat: fetch submodules on-demand 2022-12-05 14:09:58 +01:00
David JULIEN f5b5d3709c [nvim] feat: add treesitter support for rust 2022-12-04 23:35:29 +01:00
2 changed files with 2 additions and 3 deletions

View File

@ -10,10 +10,9 @@
submodulesummary = 1
[fetch]
prune = true
recurseSubmodules = on-demand
[pull]
rebase = false
[submodule]
recurse = true
[push]
recurseSubmodules = check
[alias]

View File

@ -4,7 +4,7 @@
-- Description : treesitter config file
require("nvim-treesitter.configs").setup {
ensure_installed = { "c", "lua", "python", "bash" },
ensure_installed = { "c", "lua", "python", "rust", "bash" },
ignore_install = { "javascript" },
highlight = {
enable = true,