Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Markdown Preview.nvim | 5,240 | 3 days ago | 199 | mit | JavaScript | |||||
markdown preview plugin for (neo)vim | ||||||||||
Nvim Config | 2,724 | 4 days ago | 6 | mit | Lua | |||||
A modern Neovim configuration with full battery for Python, Lua, C++, Markdown, LaTeX, and more... | ||||||||||
Marksman | 1,219 | 2 months ago | 1 | March 26, 2022 | 47 | mit | F# | |||
Write Markdown with code assist and intelligence in the comfort of your favourite editor. | ||||||||||
Glow.nvim | 994 | a month ago | 4 | mit | Lua | |||||
A markdown preview directly in your neovim. | ||||||||||
Nvim Completion Manager | 927 | 5 years ago | 32 | mit | Python | |||||
:warning: PLEASE USE https://github.com/ncm2/ncm2 INSTEAD | ||||||||||
Vim Pandoc | 920 | a month ago | 98 | mit | Vim Script | |||||
pandoc integration and utilities for vim | ||||||||||
Markdown Preview.vim | 735 | 4 years ago | 32 | CSS | ||||||
⚠️ PLEASE USE https://github.com/iamcco/markdown-preview.nvim INSTEAD | ||||||||||
Vscode Ltex | 643 | 5 months ago | 9 | November 28, 2021 | 77 | mpl-2.0 | TypeScript | |||
LTeX: Grammar/spell checker :mag::heavy_check_mark: for VS Code using LanguageTool with support for LaTeX :mortar_board:, Markdown :pencil:, and others | ||||||||||
Vim Markdown Composer | 570 | a year ago | 31 | Rust | ||||||
An asynchronous markdown preview plugin for Vim and Neovim. | ||||||||||
Mkdnflow.nvim | 474 | 21 days ago | 30 | gpl-3.0 | Lua | |||||
Fluent navigation and management of markdown notebooks |
This repo hosts my Nvim configuration for Linux, macOS, and Windows.
init.lua
is the config entry point for terminal Nvim,
and ginit.vim
is the additional config file for GUI client of Nvim.
My configurations are heavily documented to make it as clear as possible. While you can clone the whole repository and use it, it is not recommended though. Good configurations are personal. Everyone should have his or her unique config file. You are encouraged to copy from this repo the part you want and add it to your own config.
To reduce the possibility of breakage, this config is only maintained for the latest nvim stable release. No effort is spent on maintaining backward compatibility.
See doc here on how to install Nvim's dependencies, Nvim itself, and how to set up on different platforms (Linux, macOS, and Windows).
For more UI demos, check here.
Go to a string starting with se
Some of the shortcuts I use frequently are listed here. In the following shortcuts, <leader>
represents ASCII character ,
.
Shortcut | Mode | platform | Description |
---|---|---|---|
<leader>ff |
Normal | Linux/macOS/Win | Fuzzy file searching in a floating window |
<leader>fh |
Normal | Linux/macOS/Win | Fuzzy help file grepping in a floating window |
<leader>fg |
Normal | Linux/macOS/Win | Fuzzy project-wide grepping in a floating window |
<leader>ft |
Normal | Linux/macOS/Win | Fuzzy buffer tag searching in a floating window |
<leader>fb |
Normal | Linux/macOS/Win | Fuzzy buffer switching in a floating window |
<leader><Space> |
Normal | Linux/macOS/Win | Remove trailing white spaces |
<leader>v |
Normal | Linux/macOS/Win | Reselect last pasted text |
<leader>ev |
Normal | Linux/macOS/Win | Edit Nvim config in a new tabpage |
<leader>sv |
Normal | Linux/macOS/Win | Reload Nvim config |
<leader>st |
Normal | Linux/macOS/Win | Show highlight group for cursor text |
<leader>q |
Normal | Linux/macOS/Win | Quit current window |
<leader>Q |
Normal | Linux/macOS/Win | Quit all window and close Nvim |
<leader>w |
Normal | Linux/macOS/Win | Save current buffer content |
<leader>y |
Normal | Linux/macOS/Win | Copy the content of entire buffer to default register |
<leader>cl |
Normal | Linux/macOS/Win | Toggle cursor column |
<leader>cd |
Normal | Linux/macOS/Win | Change current working directory to to the dir of current buffer |
<space>t |
Normal | Linux/macOS/Win | Toggle tag window (show project tags in the right window) |
<leader>gs |
Normal | Linux/macOS/Win | Show Git status result |
<leader>gw |
Normal | Linux/macOS/Win | Run Git add for current file |
<leader>gd |
Normal | Linux/macOS/Win | Run git diff for current file |
<leader>gc |
Normal | Linux/macOS/Win | Run git commit |
<leader>gpl |
Normal | Linux/macOS/Win | Run git pull |
<leader>gpu |
Normal | Linux/macOS/Win | Run git push |
<leader>gl |
Normal/Visual | Linux/macOS/Win | Get perm link for current/visually-select lines |
<leader>gb |
Normal | macOS | Browse current git repo in browser |
<F9> |
Normal | Linux/macOS/Win | Compile&run current source file (for C++, LaTeX, Lua, Python) |
<F11> |
Normal | Linux/macOS/Win | Toggle spell checking |
<F12> |
Normal | Linux/macOS/Win | Toggle paste mode |
\x |
Normal | Linux/macOS/Win | Close location or quickfix window |
\d |
Normal | Linux/macOS/Win | Close current buffer and go to previous buffer |
{count}gb |
Normal | Linux/macOS/Win | Go to buffer {count} or next buffer in the buffer list. |
{operator}iB |
Normal | Linux/macOS/Win | Operate in the whole buffer, {operator} can be v , y , c , d etc. |
Alt-k |
Normal | Linux/macOS/Win | Move current line or selected lines up |
Alt-j |
Normal | Linux/macOS/Win | Move current line or selected lines down |
Alt-m |
Normal | macOS/Win | Markdown previewing in system browser |
Alt-Shift-m |
Normal | macOS/Win | Stopping Markdown previewing in system browser |
ob |
Normal/Visual | macOS/Win | Open link under cursor or search visual selection |
ctrl-u |
Insert | Linux/macOS/Win | Turn word under cursor to upper case |
ctrl-t |
Insert | Linux/macOS/Win | Turn word under cursor to title case |
jk |
Insert | Linux/macOS/Win | Return to Normal mode without lagging |
In addition to commands provided by various plugins, I have also created some custom commands for personal use.
command | description | example |
---|---|---|
Redir |
capture command output to a tabpage for easier inspection. | Redir hi |
Edit |
edit multiple files at the same time, supports globing | Edit *.vim |
Datetime |
print current date and time or convert Unix time stamp to date and time |
Datetime 12345 or Datetime
|
If you find anything that needs improving, do not hesitate to point it out or create a PR.
If you come across an issue, you can first use :checkhealth
command provided by nvim
to trouble-shoot yourself.
Please read carefully the messages provided by health check.
If you still have an issue, open a new issue.
Some of the resources that I find helpful in mastering Nvim is documented here. You may also be interested in my posts on configuring Nvim: