Skip to content

iainsimmons/nvim-config

Repository files navigation

iainvim: Iain Simmons' Neovim configuration

Neovim dashboard Neovim editing Neovim markdown

⚙️ dotfiles

Looking for the rest of my dotfiles? You can find those over at iainsimmons/dotfiles.

🔧 Install instructions

Install requires Neovim 0.11+. Always review the code before installing a configuration.

Clone the repository and install the plugins:

git clone [email protected]:iainsimmons/nvim-config ~/.config/iainsimmons/nvim-config

Open Neovim with this config:

NVIM_APPNAME=iainsimmons/nvim-config/ nvim

💤 Plugin manager

🔌 Plugins

Generating this README

To generate this file, run this util function:

:lua require("util.generate-readme").generate()

You should see a message "README.md successfully generated"

You can also use or change the global keymap for this:

vim.keymap.set("n", "<leader>rm", function()
  require("util.generate-readme").generate()
end, { desc = "Generate README" })