diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..05e462f --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,3 @@ +{ + "MD013": false, +} diff --git a/README.md b/README.md index 26bef64..1d981fd 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,14 @@ If using Neovim from the terminal, ensure the terminal font is set to CaskaydiaC - ripgrep - fd +- fzf - nodeJs - used for installing jsonls, an lsp used for nvim config. These programs can all be installed with `winget`. ``` 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. diff --git a/lazyvim.json b/lazyvim.json index 5d8f386..35a8ef5 100644 --- a/lazyvim.json +++ b/lazyvim.json @@ -6,7 +6,7 @@ "lazyvim.plugins.extras.lang.rust" ], "news": { - "NEWS.md": "7637" + "NEWS.md": "11229" }, "version": 7 } \ No newline at end of file diff --git a/lua/config/options.lua b/lua/config/options.lua index c52f338..474ac99 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -2,8 +2,6 @@ -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua -- Add any additional options here -vim.opt.guifont = "CaskaydiaCove NFM:h12" - -- Taken from help docs vim.cmd([[ let &shell = executable('pwsh') ? 'pwsh' : 'powershell' diff --git a/lua/plugins/nvim-cmp.lua b/lua/plugins/nvim-cmp.lua deleted file mode 100644 index 0eb2d0c..0000000 --- a/lua/plugins/nvim-cmp.lua +++ /dev/null @@ -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, - }, -}