Use submodules and plain vim packages 💬 by Caio a year ago (log)
The only wonky thing here is dependency management and the only thing requiring deps is telescope. Maybe I'll drop it.
The only wonky thing here is dependency management and the only thing requiring deps is telescope. Maybe I'll drop it.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
config.nvim
Simple configuration for neovim with (optional) LSP support. Built
by plucking options out of my .vimrc [VIMRC] when a default behavior
bothered me.
Here be no icons, text rules.
Basic Installation
$ git clone --recurse-submodules https://github.com/caio/config.nvim ~/.config/nvim
Starting/Using LSP
It's not always that I want to boot heavy IDE-like features when I
open a file with the editor, so lsp functionality is gated behind
the LspStart command. Issuing it will launch a server and configure
mappings accordingly.
:LspStart
References
[VIMRC] My vim configuration files
https://caio.co/de/vim-runtime/
|