minimal nvim config, hope you like it!
- find files
- file explorer
- comment
- color
- autopairs
- indent line
- buffer explorer
- grep
git clone [email protected]:fanlia/minimal.nvim.git ~/.config/nvim
nvim
# after plugins installed, press `q` to close the installation window
local leader = ' '
plugin | func | keymapping |
---|---|---|
nvim-tree/nvim-tree.lua | toggle tree | <leader>nn |
nvim-telescope/telescope.nvim | find files | <leader>ff |
nvim-telescope/telescope.nvim | live grep | <leader>fg |
nvim-telescope/telescope.nvim | find buffers | <leader>fb |
nvim builtin | comment line | gcc |
nvim builtin | comment block | gc |
-- create file ./lua/myplugins.lua
return {
'ziglang/zig.vim',
'cheap-glitch/vim-v',
}
- https://github.com/nvim-telescope/telescope.nvim
- https://github.com/nvim-tree/nvim-tree.lua
- https://github.com/folke/tokyonight.nvim
- https://github.com/windwp/nvim-autopairs
- https://github.com/lukas-reineke/indent-blankline.nvim
- https://github.com/nvim-treesitter/nvim-treesitter
- mit