惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
博客园 - 司徒正美
罗磊的独立博客
D
Docker
Last Week in AI
Last Week in AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
V
V2EX
Google DeepMind News
Google DeepMind News
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
V
Visual Studio Blog
博客园 - 叶小钗
B
Blog RSS Feed
A
About on SuperTechFans
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
P
Proofpoint News Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Start with NvChad
Ruben Alvara · 2026-05-17 · via DEV Community
Cover image for Start with NvChad

Ruben Alvarado

Originally published on Web Warrior Toolbox

NvChad is a code editor that is light weight and can be used from terminal screens. It has a system of add-ons (e.g. lazy vim) that lets you add functionalities found in GUI like editors. If you have a server that has only CLI and you want a rich feature editor, use this. NvChad can also be practicall when you have a dev-pc that will run heavy loads while you need to use an editor at same time(serving a heavy app locally while running Figma, youtube someone?). Anyway give it a try so you have another editor that you can use in these scenarios or other that you think it could be worth it.

How to install (Linux PC)

the process to install has these parts

Install git. You will need to clone a git repo after that.

sudo apt update
sudo apt install git
git --version // check version

Enter fullscreen mode Exit fullscreen mode

Install Neovim. you need version 0.10 or higher

sudo apt update
sudo apt install neovim
nvim --version // check version

Enter fullscreen mode Exit fullscreen mode

install nerdfonts

mkdir -p ~/.local/share/fonts
cd ~/.local/share/fonts
wget https://github.com/ryanoasis/nerd-fonts/releases/latest/download/JetBrainsMono.zip
unzip JetBrainsMono.zip
fc-cache -fv

Enter fullscreen mode Exit fullscreen mode

⚠️ Then set the font in your terminal emulator.

Clone the NvChad repo:

git clone https://github.com/NvChad/starter ~/.config/nvim

Enter fullscreen mode Exit fullscreen mode

start nvchad

nvim

Enter fullscreen mode Exit fullscreen mode

now when you access NvChad you can look at the file tree using space e to open it. Here some more commands to use with the tree

tab // expand/collapse a folder
E // expand folder and subfolder
CC // collapse folder and subfolders
H // show/hide hidden folders

Enter fullscreen mode Exit fullscreen mode

and to move between panel use these commands

ctrl+w // window mode
ctrl+<direction_key> // use hjkl

Enter fullscreen mode Exit fullscreen mode

To open and close terminal window use

alt + h // toggles horizontal terminal.

Enter fullscreen mode Exit fullscreen mode

Tab > Window > Buffer

nvchad has these 3 elements to organize what is shown on screen

A buffer is a file loaded in memory. when you press enter on a file in file tree you open a buffer. Remember these commands.

in normal mode
:bd // close buffer (buffer delete)
:ls // get a list of buffers and its numbers
:b <N> // opens buffer with number N (space can be ommited)
tab // go to next buffer
shifht+tab // previous buffer

Enter fullscreen mode Exit fullscreen mode

Windows and Tabs

A windows is an element that shows 1 buffer. use :q to close a window (you will also close the buffer it contains). Use :qa to close all windows (this closes nvchad)

A tab is an element that shows multiple windows. Here are some commands to manage them

:tabnew // create tab
:split // split with horizontal window
:vsplit // vertical split
:tabs // lists all tabs and windows

Enter fullscreen mode Exit fullscreen mode

Be patient and keep practicing to develop your skills and muscle memory 💪🥘