Skip to content

LostbBlizzard/lazysql.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lazysql.nvim

A Simple Plugin for calling lazysql from within neovim. In the same vein crnvl96/lazydocker.nvim and kdheepak/lazygit.nvim

screenshot

Alternatives

But if like "Do One Thing and Do It Well" just continue on.

Dependencies

You will need lazysql installed on your system for this plugin to work.

Install

-- Packer
use({
  "LostbBlizzard/lazysql.nvim",
  config = function()
    require("lazysql").setup()
  end,
  requires = {
    "MunifTanjim/nui.nvim",
  }
})

-- Lazy
{
  "LostbBlizzard/lazysql.nvim",
  opts = {},  -- automatically calls `require("lazysql").setup()`
  dependencies = {
    "MunifTanjim/nui.nvim",
  }
}

Usage

just use the command LazySql to toggle the floating panel

or set a keybind

vim.keymap.set("n", "<leader>ls", "<cmd>LazySql<CR>", { desc = "Toggle LazySql", noremap = true, silent = true })

About

Plugin for calling lazysql from within neovim.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages