Skip to content

Instantly share code, notes, and snippets.

@bibstha
Last active August 16, 2023 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bibstha/541afc354d87888a6421835e61bf43ab to your computer and use it in GitHub Desktop.
Save bibstha/541afc354d87888a6421835e61bf43ab to your computer and use it in GitHub Desktop.
Minimal neovim config for use with VSCode
" VimPlug for plugin management
" Treesitter + VimMatchup improves start-end matching significantly
call plug#begin()
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'andymass/vim-matchup'
call plug#end()
lua <<EOF
require'nvim-treesitter.configs'.setup {
ensure_installed = { "ruby" },
auto_install = true,
matchup = {
enable = true,
},
}
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment