My Neovim Setup w/ .vimrc
Neovim Setup + .vimrc This is my current laptop setup, which differs from my PC setup to account for UNIX, portability and automation testing: Macbook M1 Pro 2021 (16", Sonoma 14.5) iTerm w/ Neovim installed using Homebrew NVChad w/ Cattppuccin Theme git clone -b v2.0 https://github.com/NvChad/NvChad ~/.config/nvim --dep th 1 .vimrc symlinked ----- Plugin Manager I am fan of vim-plug on vanilla Vim + Windows, but with Neovim I will use NVChad's inbuilt package manager ( packer.nvim ) and Mason.nvim to manage/install third-party dependencies and plugins. My plugins.lua: local plugins = { { "nvim-neotest/nvim-nio", }, { "rcarriga/nvim-dap-ui", event = "VeryLazy", dependencies = "mfussenegger/nvim-dap", config = function() local dap = require("dap") local dapui = require("dapui") dapui.setup() dap.listeners.after.event_initialized["dapui_config"] = function()...