craftzdog / dotfiles-public

My personal dotfiles
6.32k stars 1.16k forks source link

how to add new plugins of our own? #155

Closed Sergekarr closed 6 months ago

Sergekarr commented 8 months ago

can somebody help me to add a plugin of my choice to this ?

mahesh-143 commented 7 months ago

@adilzaheem Did you mean neovim plugin or fish plugin ?

If you want to add nvim plugin then in nvim/lua/plugins/ create a lua file and return your plugin like this

return {
  "githubuname/pluginname",
  -- you can add other options here checkout lazyvim docs
}

Check out LazyVim's docs for adding plugin for more info about adding opts, keys etc. Also check the github readme of the plugin you want to add.