Skip to content

Aliqyan-21/timy.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

timy.nvim

timy.nvim is a simple Neovim plugin that displays the current time in the command line whenever the TimyShowTime command is executed. Created this plugin as a learning exercise to understand the basics of Neovim plugin development.

Features

  • Display the current time in the command line with a simple command.

Installation

You can install timy.nvim using your preferred plugin manager. Here’s an example with packer.nvim:

use {
  "aliqyan-21/timy.nvim",
  config = function()
    require("timy").setup({
      format = "%H:%M:%S",  -- Customize the time format (optional)
    })
  end,
}

lazy.nvim:

return {
  "aliqyan-21/timy.nvim",
  config = function()
    require("timy").setup({
      format = "%H:%M:%S",  -- Customize the time format (optional)
    })
  end,
}

Usage

After installation, you can show the current time by executing the following command in Neovim:

:TimyShowTime

Disclaimer

This plugin was developed purely for learning purposes. It is a minimal example intended to explore the basics of Neovim plugin development, and may not be suitable for production use.

About

A neovim plugin that shows current time - made just for learning purposes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages