remove treesitter from general

This commit is contained in:
2022-01-25 22:45:42 -07:00
parent 7406739b4a
commit dd6604972f
4 changed files with 23 additions and 18 deletions

View File

@@ -2,5 +2,7 @@ FROM alpine:latest
RUN apk update && apk add git curl RUN apk update && apk add git curl
RUN sh -c "$(curl -fsLS git.io/chezmoi)" -- init --apply candrewlee14 RUN sh -c "$(curl -fsLS git.io/chezmoi)" -- init --apply candrewlee14
RUN nvim --headless +'PlugInstall --sync' +qa RUN nvim --headless +'PlugInstall --sync' +qa
RUN nvim --headless -u ~/.config/nvim/coq_init.vim +'PlugInstall --sync' +qa
RUN nvim --headless -u ~/.config/nvim/cmp_init.vim +'PlugInstall --sync' +qa
ENTRYPOINT ["/bin/zsh"] ENTRYPOINT ["/bin/zsh"]

View File

@@ -1,7 +1,9 @@
call plug#begin() call plug#begin()
source $HOME/.config/nvim/templates/general.vim source $HOME/.config/nvim/templates/general_plugs.vim
call plug#end() call plug#end()
source $HOME/.config/nvim/templates/general.vim
"Theme "Theme
colorscheme gruvbox colorscheme gruvbox

View File

@@ -125,23 +125,24 @@ endif
" Set termdebug " Set termdebug
let g:termdebug_wide=1 let g:termdebug_wide=1
lua << EOF " Experimental Treesitter Plugin
require'nvim-treesitter.configs'.setup { " lua << EOF
ensure_installed = { "zig", "python", "c", "bash", "json" }, -- one of "all", "maintained" (parsers with maintainers), or a list of languages " require'nvim-treesitter.configs'.setup {
sync_install = false, -- install languages synchronously (only applied to `ensure_installed`) " ensure_installed = { "zig", "python", "c", "bash", "json" }, -- one of "all", "maintained" (parsers with maintainers), or a list of languages
ignore_install = { "javascript" }, -- List of parsers to ignore installing " sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
highlight = { " ignore_install = { "javascript" }, -- List of parsers to ignore installing
enable = true, -- false will disable the whole extension " highlight = {
-- disable = { "c", "rust" }, -- list of language that will be disabled " enable = true, -- false will disable the whole extension
-- Setting this to true will run `:h syntax` and tree-sitter at the same time. " -- disable = { "c", "rust" }, -- list of language that will be disabled
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). " -- Setting this to true will run `:h syntax` and tree-sitter at the same time.
-- Using this option may slow down your editor, and you may see some duplicate highlights. " -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
-- Instead of true it can also be a list of languages " -- Using this option may slow down your editor, and you may see some duplicate highlights.
additional_vim_regex_highlighting = false, " -- Instead of true it can also be a list of languages
}, " additional_vim_regex_highlighting = false,
} " },
" }
EOF " EOF
" Specific Local config " Specific Local config
if filereadable($HOME . "/.config/nvim/templates/general.vim.local") if filereadable($HOME . "/.config/nvim/templates/general.vim.local")

View File

@@ -27,4 +27,4 @@ Plug 'preservim/nerdtree'
Plug 'liuchengxu/vista.vim' Plug 'liuchengxu/vista.vim'
" Syntax Highlighting " Syntax Highlighting
Plug 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " We recommend updating the parsers on update " Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " Experimental