init
This commit is contained in:
109
docs/commands.md
Normal file
109
docs/commands.md
Normal file
@@ -0,0 +1,109 @@
|
||||
#============================================================
|
||||
# Neovim Command Reference (Core Commands)
|
||||
#============================================================
|
||||
|
||||
|
||||
#============================================================
|
||||
# FILE & SESSION MANAGEMENT
|
||||
#============================================================
|
||||
:w (write) Save current buffer
|
||||
:w <file> Write to <file> (does NOT rename buffer)
|
||||
:sav (saveas) <file> Save to <file> and rename current buffer
|
||||
:q (quit) Quit current window if no unsaved changes
|
||||
:q! Force quit (discard changes)
|
||||
:wq Write and quit current buffer
|
||||
:wqa Write and quit all buffers
|
||||
:qa Quit all windows
|
||||
:qa! Quit all without saving
|
||||
:e (edit) <file> Edit <file> in current window (new buffer)
|
||||
:e! Revert buffer to last saved version (discard changes)
|
||||
:enew Create new empty buffer
|
||||
:r (read) <file> Read <file> into current buffer after cursor
|
||||
:ter (terminal) Open terminal buffer
|
||||
:clo (close) Close current window
|
||||
|
||||
|
||||
#============================================================
|
||||
# BUFFERS
|
||||
#============================================================
|
||||
:ls (buffers) List open buffers
|
||||
:bn (bnext) Go to next buffer
|
||||
:bp (bprev) Go to previous buffer
|
||||
:b<num> Go to buffer by number
|
||||
:b <file> Go to buffer by (partial) name
|
||||
:bd (bdelete) [<num>] Delete current (or given) buffer
|
||||
:bw (bwipeout) [<num>] Delete buffer and remove from memory
|
||||
:bo (only) Close all windows except current
|
||||
:e # Edit alternate (previous) buffer
|
||||
:b# Switch to alternate buffer
|
||||
:b% Re-edit current buffer (no-op)
|
||||
:b$ Go to last buffer
|
||||
|
||||
|
||||
#============================================================
|
||||
# WINDOWS (SPLITS)
|
||||
#============================================================
|
||||
:sp (split) [<file>] Split horizontally (optionally open <file>)
|
||||
:vsp (vsplit) [<file>] Split vertically (optionally open <file>)
|
||||
:new Split with new empty buffer
|
||||
:vnew Vertical split with new empty buffer
|
||||
:close Close current window
|
||||
:only Keep only current window open
|
||||
|
||||
|
||||
#============================================================
|
||||
# TABS
|
||||
#============================================================
|
||||
:tabnew [<file>] Open new tab (optionally edit <file>)
|
||||
:tabn (tabnext) Go to next tab
|
||||
:tabp (tabprev) Go to previous tab
|
||||
:tabm (tabmove) <num> Move current tab to position <num>
|
||||
:tabfirst Jump to first tab
|
||||
:tablast Jump to last tab
|
||||
:tabc (tabclose) Close current tab
|
||||
:tabo (tabonly) Close all other tabs
|
||||
:tabdo <cmd> Execute <cmd> in all tabs (e.g. :tabdo q)
|
||||
|
||||
|
||||
#============================================================
|
||||
# REGISTERS, MARKS & HISTORY
|
||||
#============================================================
|
||||
:reg (registers) Show register contents
|
||||
:marks Show all marks
|
||||
:ju (jumps) Show jump list
|
||||
:changes Show change list
|
||||
|
||||
|
||||
#============================================================
|
||||
# SEARCH / GREP / QUICKFIX
|
||||
#============================================================
|
||||
:g/{pattern}/d Delete all lines matching {pattern}
|
||||
:g!/{pattern}/d Delete all lines NOT matching {pattern}
|
||||
:vim /{pattern}/ **/* Search for {pattern} recursively in all files
|
||||
:cn (cnext) Jump to next quickfix entry
|
||||
:cp (cprevious) Jump to previous quickfix entry
|
||||
:cope (copen) Open quickfix window
|
||||
:ccl (cclose) Close quickfix window
|
||||
:cl (clist) List quickfix entries
|
||||
|
||||
|
||||
#============================================================
|
||||
# DIFF MODE
|
||||
#============================================================
|
||||
:diffthis Start diff mode for current window
|
||||
:diffo (diffoff) Turn off diff mode
|
||||
:diffu (diffupdate) Recalculate diff
|
||||
:diffg (diffget) Get changes from other window
|
||||
:diffpu (diffput) Send changes to other window
|
||||
|
||||
|
||||
#============================================================
|
||||
# NOTES & SYMBOLS
|
||||
#============================================================
|
||||
% Current buffer
|
||||
# Alternate (last visited) buffer
|
||||
$ Last buffer in list
|
||||
+ Next buffer
|
||||
- Previous buffer
|
||||
" Most recently edited buffer (context dependent)
|
||||
|
||||
217
docs/docs.md
Normal file
217
docs/docs.md
Normal file
@@ -0,0 +1,217 @@
|
||||
TODO:
|
||||
- wrap up invero theme in separate repo and proper colors?
|
||||
- check plugins logins
|
||||
- cache / create final result
|
||||
- simplify coding: ts, lsp, lint, format (check other repos)
|
||||
- how to download parsers and plugins alternative
|
||||
- telescope alternative
|
||||
- keymaps
|
||||
- wrap up everything
|
||||
|
||||
```lua
|
||||
--[[
|
||||
Neovim Lua config: ways to set things
|
||||
|
||||
- vim.opt : preferred modern API for options (handles lists, cleaner syntax)
|
||||
- vim.g : global variables (leader key, plugin settings, disable builtins, etc.)
|
||||
- vim.o : global-only option (rarely needed directly)
|
||||
- vim.wo : window-local option (applies to current window only, use in autocmds)
|
||||
- vim.bo : buffer-local option (applies to current buffer only, use in autocmds)
|
||||
- vim.env : set environment variables (like PATH, LANG)
|
||||
- vim.fn : call Vimscript functions (e.g. vim.fn.getcwd())
|
||||
- vim.cmd : run raw Vimscript/Ex commands (e.g. vim.cmd("colorscheme desert"))
|
||||
- vim.api : low-level Neovim API (create autocmds, keymaps, buffer/window ops, etc.)
|
||||
|
||||
TL;DR -> use vim.opt + vim.g in options.lua for defaults.
|
||||
Use vim.wo/vim.bo only in context-specific tweaks (autocmds).
|
||||
Use vim.env, vim.fn, vim.cmd, vim.api as needed for scripting.
|
||||
--]]
|
||||
```
|
||||
|
||||
## check macos fileS: https://github.com/dsully/dotfiles/blob/main/.data/macos-defaults/globals.yaml
|
||||
|
||||
# Used pacakges:
|
||||
- rockspaces Metadata files describing how to build and install a Lua package.
|
||||
- luarocks Package manager for Lua modules. (optional)
|
||||
- tree-sitter Parser generator. Not needed except for using CLI. (optional)
|
||||
|
||||
- fd-find (fd) Alternative to `find`. (optional)
|
||||
- ripgrep (rg) Line-oriented search tool. (recommended)
|
||||
|
||||
- git Revision control system. (requirement)
|
||||
- lazygit Terminal UI for git commands. (optional)
|
||||
|
||||
- fzf Command-line fuzzy finder.
|
||||
- bat "cat" but with colors
|
||||
- curl Command-line for transferring data specified with URL syntax.
|
||||
- wget Utility for downloading files from the Web.
|
||||
- make
|
||||
- cc Collection of compilers.
|
||||
- build-essential Meta-package that installs standard C/C++ libraries and headers.
|
||||
These are needed to compile tree-sitter parsers. Run only on the first time.
|
||||
cc (gcc, clang) C compiler. Usually it points to `clang` (on macos) or `gcc` (on linux).
|
||||
g++ C++ compiler.
|
||||
make Build automation tool from source code.
|
||||
|
||||
- unzip Extraction utility for archives compressed in .zip.
|
||||
- ca-certificates Provides a set of trusted Certificate Authority (CA) certificates.
|
||||
- openssh-client Tools for connecting to remote servers securely over SSH.
|
||||
- libssl-dev Development libraries and headers for OpenSSL.
|
||||
- sudo
|
||||
- tree
|
||||
- jq
|
||||
- man-db
|
||||
- python3
|
||||
- volta Node manager
|
||||
- ncurses ncurses-dev ncurses-libs ncurses-terminfo \
|
||||
- check: https://github.com/glepnir/nvim/blob/main/Dockerfile
|
||||
|
||||
|
||||
# Currently installed
|
||||
- plenary.nvim
|
||||
- lazy.nvim
|
||||
|
||||
- nvim-treesitter
|
||||
- neovim/nvim-lspconfig
|
||||
- williamboman/mason.nvim
|
||||
- williamboman/mason-lspconfig.nvim
|
||||
- j-hui/fidget.nvim
|
||||
- hrsh7th/cmp-nvim-lsp
|
||||
- b0o/schemastore.nvim
|
||||
|
||||
- windwp/nvim-ts-autotag # auto close,rename tags
|
||||
- nvim-autopairs # auto pair chars
|
||||
- stevearc/conform.nvim # formatter
|
||||
- nvim-cmp # completion
|
||||
- cmp-path
|
||||
- cmp-nvim-lsp
|
||||
|
||||
- nvim-tree.lua # file explorer
|
||||
- telescope.nvim
|
||||
- telescope-fzf-native.nvim
|
||||
- telescope-ui-select.nvim
|
||||
- plenary.nvim
|
||||
- harpoon # tags
|
||||
|
||||
|
||||
# Notes:
|
||||
- in lsp change tsserver to vtsls
|
||||
|
||||
# New package definition
|
||||
- Plugin and Package managers
|
||||
- folke/lazy.nvim
|
||||
- mason-org/mason.nvim
|
||||
- TS
|
||||
- nvim-treesitter
|
||||
- nvim-treesitter-textobjects
|
||||
- LSP
|
||||
- neovim/nvim-lspconfig
|
||||
|
||||
- nvim-ts-autotag tag elements (`</>`)
|
||||
- windwp/nvim-autopairs auto pairs
|
||||
- blink.cmp autocompletion
|
||||
- stevearc/conform.nvim autoformat
|
||||
- mini.ai `a/i` motions
|
||||
- mini.pairs
|
||||
- mini.surround
|
||||
- mfussenegger/nvim-lint
|
||||
- nvim-lspconfig
|
||||
- fzf-lua (replace telescope)
|
||||
- ? indent guides
|
||||
- lukas-reineke/indent-blankline.nvim
|
||||
- snacks.indent
|
||||
- mini.indentscope
|
||||
|
||||
## Deps:
|
||||
- SchemaStore.nvim
|
||||
- mason-lspconfig.nvim
|
||||
- mason.nvim
|
||||
|
||||
## Maybe:
|
||||
- folke/ts-comments.nvim better comments
|
||||
- grug-far.nvim find and replace
|
||||
- markdown-preview.nvim side by side md (disabled in folke)
|
||||
- toppair/peek.nvim another markdown preview?
|
||||
- render-markdown.nvim inline viewer
|
||||
- markview.nvim
|
||||
- diffview.nvim
|
||||
- octo.nvim edit and review GH issues and pr
|
||||
- yanky.nvim better yank+put. has history
|
||||
- inc-rename.nvim LSP renaming with visual feedback
|
||||
- mini.basics defaults options
|
||||
- mini.test run tests under cursor
|
||||
- mini.diff inline diff
|
||||
- mini.hipatters hilight patters and hex colors
|
||||
- mini.move move chunks (like vscode)
|
||||
- undo tree (find a plugin)
|
||||
|
||||
## AI help
|
||||
- jackMort/ChatGPT.nvim
|
||||
- MunifTanjim/nui.nvim (dep)
|
||||
- nvim-lua/plenary.nvim (dep)
|
||||
- nvim-telescope/telescope.nvim (dep)
|
||||
- robitx/gp.nvim
|
||||
- zbirenbaum/copilot.lua (folke)
|
||||
- milanglacier/minuet-ai.nvim (folke)
|
||||
|
||||
## Options
|
||||
```
|
||||
|
||||
opt.backup = true
|
||||
opt.backupdir = vim.fn(stdpath("state") .. "/backup"
|
||||
opt.mousescroll = "vert:1,hor:4"
|
||||
opt.winborder = "rounded"
|
||||
opt.undofile = true
|
||||
-- lazy
|
||||
rtp = {
|
||||
disabled_plugins = { "gzip", "tarPlugin", "zipPlugin", "tohtml", "tutor" },
|
||||
},
|
||||
|
||||
vim.keymap.set("n", "<C-c>", "ciw")
|
||||
|
||||
-- ts lsp
|
||||
includeCompletionsWithSnippetText = true,
|
||||
jsxAttributeCompletionStyle = "auto",
|
||||
|
||||
-- tree-sitter parsers naming:
|
||||
https://github.com/nvim-treesitter/nvim-treesitter/blob/master/lua/nvim-treesitter/parsers.lua
|
||||
```
|
||||
|
||||
folke cmd
|
||||
```lua
|
||||
-- show cursor line only in active window
|
||||
vim.api.nvim_create_autocmd({ "InsertLeave", "WinEnter" }, {
|
||||
callback = function()
|
||||
if vim.w.auto_cursorline then
|
||||
vim.wo.cursorline = true
|
||||
vim.w.auto_cursorline = nil
|
||||
end
|
||||
end,
|
||||
})
|
||||
vim.api.nvim_create_autocmd({ "InsertEnter", "WinLeave" }, {
|
||||
callback = function()
|
||||
if vim.wo.cursorline then
|
||||
vim.w.auto_cursorline = true
|
||||
vim.wo.cursorline = false
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
-- backups
|
||||
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||
group = vim.api.nvim_create_augroup("better_backup", { clear = true }),
|
||||
callback = function(event)
|
||||
local file = vim.uv.fs_realpath(event.match) or event.match
|
||||
local backup = vim.fn.fnamemodify(file, ":p:~:h")
|
||||
backup = backup:gsub("[/\\]", "%%")
|
||||
vim.go.backupext = backup
|
||||
end,
|
||||
})
|
||||
```
|
||||
|
||||
Enable folding with TS:
|
||||
```
|
||||
vim.opt.foldmethod = "expr"
|
||||
vim.opt.foldexpr = "nvim_treesitter#foldexpr()"
|
||||
vim.opt.foldenable = false -- start with all folds open
|
||||
```
|
||||
119
docs/keymaps.md
Normal file
119
docs/keymaps.md
Normal file
@@ -0,0 +1,119 @@
|
||||
#============================================================
|
||||
# NEOVIM KEYMAP REFERENCE (CORE & USEFUL)
|
||||
#============================================================
|
||||
|
||||
|
||||
#============================================================
|
||||
# INSERT MODE (Ctrl + ...)
|
||||
#============================================================
|
||||
Ctrl + h Delete character before cursor
|
||||
Ctrl + w Delete word before cursor
|
||||
Ctrl + j Insert line break (newline) at cursor
|
||||
Ctrl + t Indent current line one 'shiftwidth' to the right
|
||||
Ctrl + d De-indent current line one 'shiftwidth' to the left
|
||||
Ctrl + n Insert next auto-completion match
|
||||
Ctrl + p Insert previous auto-completion match
|
||||
Ctrl + r x Insert contents of register x
|
||||
Ctrl + o {cmd} Temporarily enter Normal mode to execute {cmd}
|
||||
Esc / Ctrl + c Exit insert mode and return to Normal mode
|
||||
|
||||
|
||||
#============================================================
|
||||
# NORMAL MODE — WINDOW & TAB MANAGEMENT
|
||||
#============================================================
|
||||
C-w s Split current window horizontally
|
||||
C-w v Split current window vertically
|
||||
C-w c Close current window
|
||||
C-w q Quit current window (same as close but exit if last)
|
||||
C-w w Cycle through open windows
|
||||
C-w x Exchange window with next one
|
||||
|
||||
C-w = Equalize window sizes
|
||||
C-w _ Maximize height of current window
|
||||
C-w | Maximize width of current window
|
||||
|
||||
C-w h Move to window left
|
||||
C-w j Move to window below
|
||||
C-w k Move to window above
|
||||
C-w l Move to window right
|
||||
|
||||
C-w H Move current window far left
|
||||
C-w J Move current window to bottom
|
||||
C-w K Move current window to top
|
||||
C-w L Move current window far right
|
||||
|
||||
C-w t Move current split into a new tab
|
||||
|
||||
gt Go to next tab
|
||||
gT Go to previous tab
|
||||
<n>gt Go to tab number <n>
|
||||
|
||||
|
||||
#============================================================
|
||||
# NORMAL MODE — TAGS, JUMPS & MOTIONS
|
||||
#============================================================
|
||||
Ctrl + ] Jump to tag under cursor
|
||||
gd Go to local declaration
|
||||
gD Go to global declaration
|
||||
{ Jump backward one paragraph/block
|
||||
} Jump forward one paragraph/block
|
||||
; Repeat last motion forward
|
||||
, Repeat last motion backward
|
||||
Ctrl + e Scroll window down (cursor stays put)
|
||||
Ctrl + y Scroll window up (cursor stays put)
|
||||
H Move cursor to top of screen
|
||||
M Move cursor to middle of screen
|
||||
L Move cursor to bottom of screen
|
||||
|
||||
|
||||
#============================================================
|
||||
# NORMAL MODE — TEXT OBJECTS
|
||||
#============================================================
|
||||
aw "A word" — select word + following space
|
||||
ab "A block" — select around ()
|
||||
aB "A Block" — select around {}
|
||||
at "A tag" — select around XML/HTML tag
|
||||
|
||||
ib "Inner block" — inside ()
|
||||
iB "Inner Block" — inside {}
|
||||
it "Inner tag" — inside tag (no delimiters)
|
||||
|
||||
|
||||
#============================================================
|
||||
# NORMAL MODE — DIFF / CHANGES
|
||||
#============================================================
|
||||
do Obtain (get) changes from other window
|
||||
dp Put (send) changes to other window
|
||||
|
||||
|
||||
#============================================================
|
||||
# REGISTERS & CLIPBOARD
|
||||
#============================================================
|
||||
"xy Yank into register x
|
||||
"xp Paste contents of register x
|
||||
"+y Yank into system clipboard
|
||||
"+p Paste from system clipboard
|
||||
|
||||
#--- Common Registers ---
|
||||
"0 Last yank
|
||||
" Unnamed register (last delete or yank)
|
||||
"% Current file name
|
||||
"# Alternate file name
|
||||
"* X11 primary selection clipboard
|
||||
"+ X11 clipboard register
|
||||
"/ Last search pattern
|
||||
": Last command-line command
|
||||
". Last inserted text
|
||||
"- Last small (less than a line) delete
|
||||
"= Expression register (evaluate expression)
|
||||
"_ Black hole register (discard output)
|
||||
|
||||
|
||||
#============================================================
|
||||
# TIPS & NOTES
|
||||
#============================================================
|
||||
- Ctrl + o in Insert mode is a powerful way to run one Normal-mode command temporarily.
|
||||
- Use “aw”, “iw”, “ab”, “ib”, etc. with operators (e.g., ‘daw’, ‘yib’) for precise text manipulation.
|
||||
- The system clipboard is “+” (Windows/macOS/Linux), but some X11 systems also use “*”.
|
||||
- When in diff mode, ‘do’ and ‘dp’ are complementary: “get” vs. “put” changes.
|
||||
|
||||
94
docs/neovim-actions.md
Normal file
94
docs/neovim-actions.md
Normal file
@@ -0,0 +1,94 @@
|
||||
-- Window Creation/Closing
|
||||
Ctrl-w s - Split window horizontally
|
||||
Ctrl-w v - Split window vertically
|
||||
Ctrl-w n - Create new window horizontally with empty buffer
|
||||
Ctrl-w c - Close current window
|
||||
Ctrl-w o - Close all windows except current one
|
||||
|
||||
-- Window Navigation
|
||||
Ctrl-h - Move to window on the left
|
||||
Ctrl-j - Move to window below
|
||||
Ctrl-k - Move to window above
|
||||
Ctrl-l - Move to window on the right
|
||||
|
||||
-- Window Moving/Rearranging
|
||||
Ctrl-w H - Move current window to far left
|
||||
Ctrl-w J - Move current window to bottom
|
||||
Ctrl-w K - Move current window to top
|
||||
Ctrl-w L - Move current window to far right
|
||||
|
||||
-- Window Resizing
|
||||
Ctrl-w = - Make all windows equal size
|
||||
Ctrl-w _ - Maximize height of current window
|
||||
Ctrl-w | - Maximize width of current window
|
||||
Ctrl-w > - Increase width by 5 column
|
||||
Ctrl-w < - Decrease width by 5 column
|
||||
Ctrl-w + - Increase height by 5 row
|
||||
Ctrl-w - - Decrease height by 5 row
|
||||
|
||||
-- Window Special Commands
|
||||
Ctrl-w T - Move current window to new tab
|
||||
Ctrl-w } - Preview definition in new window
|
||||
Ctrl-w z - Close preview window
|
||||
|
||||
-- Tab
|
||||
<Leader>t] :tabnext - Go to next tab
|
||||
<Leader>t[ :tabprevious - Go to previous tab
|
||||
<Leader>tn :tabnew - Create a new tab
|
||||
<Leader>tc :tabclose - Close current tab
|
||||
<Leader>to :tabonly - Close all other tabs
|
||||
<Leader>{n} :{n}gt - Go to tab {n}
|
||||
|
||||
-- Buffer
|
||||
-- note: mainly using the telescope one
|
||||
<Leader>space telescope.buffers - open buffers with telescope. there can navigate and delete
|
||||
<Leader>bl :ls - List all buffers
|
||||
<Leader>bd :bdelete - Delete current buffer
|
||||
<Leader>bn :bnext - Go to next buffer
|
||||
<Leader>bp :bprevious - Go to previous buffer
|
||||
<Leader>b{n} :buffer {n} - Go to buffer {n}
|
||||
<Leader>bb :b<Space> - Start buffer selection
|
||||
<Leader>bo :bufdo bd|1bd - Delete all other buffers
|
||||
|
||||
-- Telescope
|
||||
<Leader>ff telescope.find_files - Search Files
|
||||
<Leader>fg telescope.live_grep - Search by Grep
|
||||
<Leader>fb telescope.buffers - Search Buffers
|
||||
<Leader>fh telescope.help_tags - Search Help
|
||||
<Leader>fp telescope.projects - Search Projects
|
||||
<Leader>fm telescope.marks - Search Marks
|
||||
<Leader>fc telescope.commands - Search Commands
|
||||
<Leader>fk telescope.keymaps - Search Keymaps
|
||||
<Leader>fs telescope.git_status - Search Git Status
|
||||
<Leader>fw telescope.grep_string - Search current Word
|
||||
<Leader>fd telescope.diagnostics - Search Diagnostics
|
||||
<Leader>fr telescope.lsp_references - Search References
|
||||
|
||||
-- Neo-tree
|
||||
<Leader>e :NvimTree toggle - Explorer Toggle
|
||||
<Leader>E :NvimTree focus - Explorer Focus
|
||||
|
||||
-- Harpoon
|
||||
<Leader>h harpoon_ui.toggle_menu - Harpoon Menu
|
||||
<Leader>m harpoon_mark.add_file - Mark File
|
||||
<Leader>1 harpoon_ui.nav_file(1) - Harpoon File 1
|
||||
<Leader>2 harpoon_ui.nav_file(2) - Harpoon File 2
|
||||
<Leader>3 harpoon_ui.nav_file(3) - Harpoon File 3
|
||||
<Leader>4 harpoon_ui.nav_file(4) - Harpoon File 4
|
||||
<Leader>hn harpoon_ui.nav_next - Harpoon Next
|
||||
<Leader>hp harpoon_ui.nav_prev - Harpoon Previous
|
||||
|
||||
-- Terminal
|
||||
<Leader>tet :terminal cd %:h - Terminal in This dir
|
||||
<Leader>ter :terminal - Terminal Regular
|
||||
<Leader>tec :!cd %:h && - Terminal Command
|
||||
<Esc> <C-\><C-n> - Terminal Normal Mode
|
||||
<C-w> <C-\><C-n><C-w> - Terminal Window Command
|
||||
|
||||
-- LSP
|
||||
gd vim.lsp.buf.definition - Goto Definition
|
||||
gr vim.lsp.buf.references - Goto References
|
||||
K vim.lsp.buf.hover - Hover Documentation
|
||||
<Leader>rn vim.lsp.buf.rename - Rename
|
||||
<Leader>ca vim.lsp.buf.code_action - Code Action
|
||||
<Leader>f vim.lsp.buf.format - Format
|
||||
Reference in New Issue
Block a user