feat: remove treesitter-context

This commit is contained in:
AngeD 2022-08-26 10:02:36 +02:00
parent 3dbc1caa6e
commit 718742e531
6 changed files with 9 additions and 17 deletions

View File

@ -5,10 +5,6 @@ require'nvim-treesitter.configs'.setup {
highlight = {enable = true}, highlight = {enable = true},
indent = {enable = true}, indent = {enable = true},
} }
vim.cmd("packadd nvim-treesitter-context")
require'treesitter-context'.setup {
enable = true,
}
vim.cmd("packadd black") vim.cmd("packadd black")

@ -1 +1 @@
Subproject commit bdfcca4af7ac8171e6d4ae4b375aad61ff747429 Subproject commit 520c609210029e901b433c49e7c1e00dd247b47a

@ -1 +1 @@
Subproject commit c170310534b1c037c2173c3bcb000bd60eb25069 Subproject commit 840994db95313b97328f33b772cc18081baf461f

@ -1 +0,0 @@
Subproject commit 8e88b67d0dc386d6ba1b3d09c206f19a50bc0625

3
.gitmodules vendored
View File

@ -10,9 +10,6 @@
[submodule ".config/nvim/pack/plugins/opt/nvim-treesitter"] [submodule ".config/nvim/pack/plugins/opt/nvim-treesitter"]
path = .config/nvim/pack/plugins/opt/nvim-treesitter path = .config/nvim/pack/plugins/opt/nvim-treesitter
url = https://github.com/nvim-treesitter/nvim-treesitter.git url = https://github.com/nvim-treesitter/nvim-treesitter.git
[submodule ".config/nvim/pack/plugins/opt/nvim-treesitter-context"]
path = .config/nvim/pack/plugins/opt/nvim-treesitter-context
url = https://github.com/nvim-treesitter/nvim-treesitter-context.git
[submodule ".config/nvim/pack/plugins/opt/vim-dirdiff"] [submodule ".config/nvim/pack/plugins/opt/vim-dirdiff"]
path = .config/nvim/pack/plugins/opt/vim-dirdiff path = .config/nvim/pack/plugins/opt/vim-dirdiff
url = https://github.com/will133/vim-dirdiff.git url = https://github.com/will133/vim-dirdiff.git

View File

@ -2,18 +2,18 @@
To clone the repo : To clone the repo :
```console ```console
# pacman -Syu --needed zsh sway firefox alacritty neovim pacman -Syu --needed zsh sway firefox alacritty neovim
$ git clone --bare https://github.com/AustralEpitech/.dotfiles.git ~/.dotfiles git clone --bare https://github.com/AustralEpitech/.dotfiles.git ~/.dotfiles
$ alias config='git --git-dir=$HOME/.dotfiles --work-tree=$HOME' alias config='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
$ config checkout # remove conflicted files and re-run the command config checkout # remove conflicted files and re-run the command
$ config submodule update --init --recursive --remote config submodule update --init --recursive --remote
$ config config status.showUntrackedFiles no config config status.showUntrackedFiles no
``` ```
To update submodules: To update submodules:
``` ```
$ config submodule update --recursive --remote config submodule update --recursive --remote
``` ```