Update to use LazyVim default plugins

Remove NatDat
Update README to include fzf
This commit is contained in:
Emma Turner 2024-12-18 11:11:36 -07:00
parent 2ef4d3cd6a
commit ae6dcffa27
5 changed files with 6 additions and 19 deletions

3
.markdownlint.json Normal file
View File

@ -0,0 +1,3 @@
{
"MD013": false,
}

View File

@ -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.

View File

@ -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
} }

View File

@ -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'

View File

@ -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,
},
}