Simple neovim weather plugin that fetches current weather information from wttr.in and displays it to the user.
- Clone or download the repository to your Neovim config directory (usually
~/.config/nvim) - Add the plugin to your Neovim config file (init.vim or init.lua)
- Restart Neovim or source the config file to load the plugin
Call the wttr() function from within Neovim to fetch and display the weather information
Bind example: vim.keymap.set("n", "<leader>w", ":lua require\"weather\".wttr()<CR>")
I built this plugin as a basic project to explore Neovim plugin development and Lua scripting within Neovim
