This file contains hidden or 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
" Simple Neovim config (init.vim) | |
" Installs: tpope/vim-surround, neovim/nvim-lspconfig (gopls, terraformls), morhetz/gruvbox | |
" Use XDG-aware plug directory | |
let s:plug_home = stdpath('data') . '/site/plugged' | |
call plug#begin(s:plug_home) | |
" Text editing plugins | |
Plug 'tpope/vim-surround' |