Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 683 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 683 Bytes

turkish.nvim

An example plugin that says hello when you press <Leader>h

📦 Installation

  1. Install via your favorite package manager.
-- lazy.nvim
{
   "roktas/turkish.nvim",
   opts = {}
},
  1. Setup the plugin in your init.lua. This step is not needed with lazy.nvim if opts is set as above.
require("turkish").defaults()

🚀 Usage

TODO

🔧 Configuration

You can pass your config table into the setup() function or opts if you use lazy.nvim.

Options

  • name (optional, type: string): the name that example.nvim greets with

Example:

require("turkish").setup({
  abbreviate = { "markdown" },
  map = true,
})