Nvim Configurations
Go to file
Andre Herniques ba8bd22858 added readme
2023-06-12 13:18:07 +01:00
after/plugin added readme 2023-06-12 13:18:07 +01:00
lua/andr3 added readme 2023-06-12 13:18:07 +01:00
plugin Moved to tex lsp 2023-06-05 13:59:07 +01:00
init.lua Inital Commit 2023-05-08 18:41:49 +01:00
README.md added readme 2023-06-12 13:18:07 +01:00

My NeoVim configuration

Requirements

To install packer run

git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim

To run LSP (autocomplete) you will also need the server for that language. Currently, the languages servers that are configured are:

  • bash (bashls)
  • c/c++ (ccls)
  • prisma (prismals)
  • python (pylsp)
  • rust (rust_analyzer)
  • svelte (sveltelsp)
  • tex (ltex)
  • ts (tsserver)
  • vlang (vls)
  • zig (zls)

Some useful shortcuts

- ' f': Find files uses fuzzy finding to search for files in the folder you are currently are
- ' /': Search the files using grep
- '<C-F>': Open file structure
- 'gd': Goto definition
- 'K': Show call signature
- ']d': Goto next error
- '[d': Goto previous error