Compare commits

..

No commits in common. "9164088ecc3e968e257b1fc08650fc136c34fc2c" and "1a248036aa64021ceb9430e301c2c1827ec6defd" have entirely different histories.

3 changed files with 1 additions and 18 deletions

View file

@ -66,9 +66,6 @@
Plug 'neoclide/coc.nvim', { 'branch': 'release' }
Plug 'dag/vim2hs'
Plug 'norcalli/nvim-colorizer.lua'
if g:vim_ide_treesitter
Plug 'nvim-treesitter/nvim-treesitter', { 'do': ':TSUpdate' }
endif
endif
" }}}

View file

@ -1,11 +0,0 @@
lua <<EOF
require'nvim-treesitter.configs'.setup {
ensure_installed = "maintained",
highlight = {
enable = true,
},
indent = {
enable = true,
},
}
EOF

View file

@ -1,7 +1,6 @@
let g:nvim_dotfiles_dir = expand('<sfile>:p:h')
let g:vim_ide = get(g:, 'vim_ide', 0)
let g:vim_ide_treesitter = get(g:, 'vim_ide_treesitter', 0)
let &runtimepath = g:nvim_dotfiles_dir.','.&runtimepath.','.g:nvim_dotfiles_dir.'/after'
@ -20,9 +19,6 @@ call plug#begin(s:vim_plug_home)
Plug 'junegunn/vim-plug'
runtime! dotfiles/plugins-list.vim
call plug#end()
if g:vim_ide_treesitter
runtime! dotfiles/treesitter.vim
endif
" Automatically install/clean plugins (because I'm a programmer) {{{
augroup vimrc-plugins
@ -34,4 +30,5 @@ endif
augroup END
" }}}
colorscheme dotfiles