NeoVim (11.1.24)
I use Vim for small projects only.
$HOME/.config/nvim
call plug#begin()
" The default plugin directory will be as follows:
" - Vim (Linux/macOS): '~/.vim/plugged'
" - Vim (Windows): '~/vimfiles/plugged'
" - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged'
" You can specify a custom plugin directory by passing it as the argument
" - e.g. `call plug#begin('~/.vim/plugged')`
" - Avoid using standard Vim directory names like 'plugin'
" Make sure you use single quotes
Plug 'preservim/nerdtree'
Plug 'https://github.com/hashivim/vim-terraform.git'
" Initialize plugin system
" - Automatically executes `filetype plugin indent on` and `syntax enable`.
call plug#end()
" You can revert the settings after the call like so:
" filetype indent off " Disable file-type-speci
Neovide / NeoVim with NERDtree, Terraform HCL syntax highlighting and GitHub CoPilot
Plugins