:setlocal nonumber norelativenumber
- Disables line numbers
https://alpha2phi.medium.com/learn-neovim-the-practical-way-8818fcf4830f#545a
https://alpha2phi.medium.com/neovim-for-beginners-init-lua-45ff91f741cb
https://github.com/alpha2phi/neovim-for-beginner/tree/01-init.lua
https://alpha2phi.medium.com/neovim-startup-screen-edd933ec8261
https://github.com/mhinz/vim-startify
https://alpha2phi.medium.com/12-neovim-themes-with-tree-sitter-support-8be320b683a4
https://github.com/folke/tokyonight.nvim
https://neovim.io/doc/user/usr_30.html
https://alpha2phi.medium.com/neovim-for-beginners-status-line-dd0c97fba978
https://github.com/nvim-lualine/lualine.nvim
https://github.com/nvim-tree/nvim-web-devicons
https://github.com/nvimdev/galaxyline.nvim
:h netrw
With netrw
it is possible to browse local and remote files, e.g.:
nvim .
nvim scp://somewhere/path/to/file
:[N]Explore[!] [dir]
- Explore the directory of the current file.
:[N]Hexplore[!] [dir]
— Horizontal Split & Explore.
:[N]Lexplore[!] [dir]
— Left Explorer Toggle.
:[N]Sexplore[!] [dir]
— Split & Explore the current file’s directory.
:[N]Vexplore[!] [dir]
— Vertical Split & Explore.
:Texplore [dir]
— Tab & Explore.
:Rexplore
— Return to/from the Explorer.
https://github.com/nvim-tree/nvim-tree.lua
https://alpha2phi.medium.com/neovim-for-beginners-file-explorer-a0b2e5cf6c57
https://alpha2phi.medium.com/learn-neovim-the-practical-way-8818fcf4830f#8c31
https://alpha2phi.medium.com/modern-neovim-init-lua-ab1220e3ecc1
nvim +PackerCompile
nvim +PackerUpdate
nvim +PackerInstall
https://github.com/wbthomason/packer.nvim
An autocommand can automatically run :PackerCompile
whenever plugins.lua
is updated:
augroup packer_user_config
autocmd!
autocmd BufWritePost plugins.lua source <afile> | PackerCompile
augroup end
This autocommand can be placed in you init.vim
.