Merge pull request #34 from Vanderscycle/main
Better indication of snip in lsp and Readme change.
This commit is contained in:
commit
1326429441
|
@ -109,6 +109,7 @@ nvim-base16 doesnt even take time to load unlike base16-vim which was eating hal
|
||||||
- packer.nvim as package manager
|
- packer.nvim as package manager
|
||||||
- indent-blankline.Nvim for indentlines
|
- indent-blankline.Nvim for indentlines
|
||||||
- smooth scrolling
|
- smooth scrolling
|
||||||
|
- Snip support from VSCode through vsnip supporting custom and predefined snips (friendly-snippets)
|
||||||
|
|
||||||
# Guides to migrate your nvim configs to init.lua -
|
# Guides to migrate your nvim configs to init.lua -
|
||||||
|
|
||||||
|
@ -120,6 +121,8 @@ nvim-base16 doesnt even take time to load unlike base16-vim which was eating hal
|
||||||
|
|
||||||
- https://icyphox.sh/blog/nvim-lua/
|
- https://icyphox.sh/blog/nvim-lua/
|
||||||
|
|
||||||
|
- https://github.com/rafamadriz/friendly-snippets/wiki
|
||||||
|
|
||||||
# Clone my setup -
|
# Clone my setup -
|
||||||
|
|
||||||
- Install neovim-nightly , also use a nerdfont on your terminal.
|
- Install neovim-nightly , also use a nerdfont on your terminal.
|
||||||
|
|
|
@ -17,7 +17,7 @@ require "compe".setup {
|
||||||
path = true,
|
path = true,
|
||||||
buffer = true,
|
buffer = true,
|
||||||
calc = true,
|
calc = true,
|
||||||
vsnip = true,
|
vsnip = {kind = ""}, --replace to what sign you prefer
|
||||||
nvim_lsp = true,
|
nvim_lsp = true,
|
||||||
nvim_lua = true,
|
nvim_lua = true,
|
||||||
spell = true,
|
spell = true,
|
||||||
|
|
Loading…
Reference in New Issue