navigator.lua/playground
2022-01-11 02:37:33 +11:00
..
go lsp_signature setup was not documented in README. Add playground folder 2022-01-09 22:31:43 +11:00
js lsp_signature setup was not documented in README. Add playground folder 2022-01-09 22:31:43 +11:00
py lsp_signature setup was not documented in README. Add playground folder 2022-01-09 22:31:43 +11:00
init.lua update navigator vimrc 2022-01-11 02:37:33 +11:00
README.md lsp_signature setup was not documented in README. Add playground folder 2022-01-09 22:31:43 +11:00

Sandbox/Tutorial

introduction

The folder contains init.lua, whitch is a minium vimrc to setup following plugins. Those plugin are some of the most used plugins for programmer.

  • lspconfig
  • treesitter
  • navigator
  • nvim-cmp
  • luasnip
  • aurora (colorscheme used in the screenshot)

There also three folder js, go, py. Those folder have some basic source code you can play with.

run init.lua

cd py
neovim -u init.lua

Move your cursor around and try to

  • Edit the code
  • Check symbol reference with <esc>gr
  • Check document symbol with <esc>g0
  • treesitter symbole <esc>gT
  • peek definition <esc>gp
  • ...