diff options
author | Franciszek Malinka <franciszek.malinka@gmail.com> | 2022-04-10 15:00:42 +0200 |
---|---|---|
committer | Franciszek Malinka <franciszek.malinka@gmail.com> | 2022-04-10 15:00:42 +0200 |
commit | 291308541e9b2a6162a70c3d742405ff2b055680 (patch) | |
tree | caa4091dc2121da060b0e574958ecb4c87534534 | |
parent | b760e0912739bf73b8b26c50a13a33f8a0ce477c (diff) |
Added readme
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | lua/user/treesitter.lua | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..3e644bf --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Neovim configuration + +My Neovim configuration, highly based on an excellent tutorial series by +[chris@machine](https://www.youtube.com/watch?v=ctH-a-1eUME&list=PLhoH5vyxr6Qq41NFL4GvhFp-WLd5xzIzZ&ab_channel=chris%40machine). + +Plugins I use: + + diff --git a/lua/user/treesitter.lua b/lua/user/treesitter.lua index ede8999..4935b8f 100644 --- a/lua/user/treesitter.lua +++ b/lua/user/treesitter.lua @@ -4,7 +4,7 @@ if not status_ok then end configs.setup { - ensure_installed = "maintained", + ensure_installed = "all", sync_install = false, ignore_install = { "" }, highlight = { |