Skip to content

Instantly share code, notes, and snippets.

View benchungiscool's full-sized avatar

Ben Chung benchungiscool

View GitHub Profile
@benchungiscool
benchungiscool / init.vim
Last active October 6, 2025 15:18
Ben NVIM Configuration
" 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'