nixvim icon indicating copy to clipboard operation
nixvim copied to clipboard

[PLUGIN REQUEST] csvview.nvim

Open henrispriet opened this issue 1 year ago • 0 comments

Field Description
Plugin csvview.nvim
Homepage https://github.com/hat0uma/csvview.nvim
Nixpkgs false

Extra Information

csvview.nvim is a lightweight CSV file viewer plugin for Neovim. With this plugin, you can easily view and edit CSV files within Neovim.

Features

  • Displays the CSV/TSV file in a tabular format using virtual text.
  • Dynamically updates the CSV view as you edit, ensuring a seamless editing experience.
  • Asynchronous parsing enables comfortable handling of large CSV files.
  • Supports two display modes:
    • highlight: Highlights the delimiter.
    • border: Displays the delimiter with │.
  • Customizable delimiter character.

NixVim specific

An auto-enable option would be nice. To automatically call CsvViewEnable for csv buffers. Something like:

{
  #...

  plugins.csvview.autoEnable = {
    enabled = true;
    delimiter = ",";
  };
}

henrispriet avatar Oct 12 '24 11:10 henrispriet