Update to use LazyVim default plugins
Remove NatDat Update README to include fzf
This commit is contained in:
parent
2ef4d3cd6a
commit
ae6dcffa27
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"MD013": false,
|
||||||
|
}
|
||||||
|
|
@ -21,13 +21,14 @@ If using Neovim from the terminal, ensure the terminal font is set to CaskaydiaC
|
||||||
|
|
||||||
- ripgrep
|
- ripgrep
|
||||||
- fd
|
- fd
|
||||||
|
- fzf
|
||||||
- nodeJs
|
- nodeJs
|
||||||
- used for installing jsonls, an lsp used for nvim config.
|
- used for installing jsonls, an lsp used for nvim config.
|
||||||
|
|
||||||
These programs can all be installed with `winget`.
|
These programs can all be installed with `winget`.
|
||||||
|
|
||||||
``` powershell
|
``` powershell
|
||||||
winget install BurntSushi.ripgrep.MSVC sharkdp.fd OpenJS.NodeJS
|
winget install BurntSushi.ripgrep.MSVC sharkdp.fd fzf OpenJS.NodeJS
|
||||||
```
|
```
|
||||||
|
|
||||||
Neovim and Git can also be installed this way.
|
Neovim and Git can also be installed this way.
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
"lazyvim.plugins.extras.lang.rust"
|
"lazyvim.plugins.extras.lang.rust"
|
||||||
],
|
],
|
||||||
"news": {
|
"news": {
|
||||||
"NEWS.md": "7637"
|
"NEWS.md": "11229"
|
||||||
},
|
},
|
||||||
"version": 7
|
"version": 7
|
||||||
}
|
}
|
||||||
|
|
@ -2,8 +2,6 @@
|
||||||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||||
-- Add any additional options here
|
-- Add any additional options here
|
||||||
|
|
||||||
vim.opt.guifont = "CaskaydiaCove NFM:h12"
|
|
||||||
|
|
||||||
-- Taken from help docs
|
-- Taken from help docs
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
let &shell = executable('pwsh') ? 'pwsh' : 'powershell'
|
let &shell = executable('pwsh') ? 'pwsh' : 'powershell'
|
||||||
|
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
return {
|
|
||||||
{
|
|
||||||
"hrsh7th/nvim-cmp",
|
|
||||||
dependencies = {
|
|
||||||
"Gelio/cmp-natdat",
|
|
||||||
opts = {
|
|
||||||
cmp_kind_text = "NatDat",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
opts = function(_, opts)
|
|
||||||
local cmp = require("cmp")
|
|
||||||
opts.sources = cmp.config.sources(vim.list_extend(opts.sources, { { name = "natdat" } }))
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue