Blob config/nvim/README
|
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.
Installation
$ git clone --recurse-submodules https://caio.co/de/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/
|