Last active
August 16, 2023 21:13
-
-
Save bibstha/541afc354d87888a6421835e61bf43ab to your computer and use it in GitHub Desktop.
Minimal neovim config for use with VSCode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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