From 78d9579ef107d20275f76925d8f01e812da0e032 Mon Sep 17 00:00:00 2001 From: Pablo P Varela Date: Wed, 24 Jan 2024 11:15:59 +0100 Subject: [PATCH] Update readme.md --- readme.md | 97 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 54 insertions(+), 43 deletions(-) diff --git a/readme.md b/readme.md index f08f6db..f44cd6c 100644 --- a/readme.md +++ b/readme.md @@ -7,6 +7,40 @@ ![before-after](./art/before-after-light.png#gh-light-mode-only) ![before-after](./art/before-after-dark.png#gh-dark-mode-only) + +- [Installation](#installation) + - [Lazy.nvim](#lazynvim) + - [Packer.nvim](#packernvim) +- [Features](#features) + - [Only show the buffers you need](#only-show-the-buffers-you-need) + - [🔭 Telescope integration]() +- [Customization](#customization) + - [Utils](#utils) +- [Inspiration](#inspiration) + + +## Installation + +Use your favorite package manager. Calling the `setup()` function is optional. + +### Lazy.nvim + +```lua +{ + "pablopunk/unclutter.nvim", + dependencies = { "nvim-tree/nvim-web-devicons" }, -- optional, to show icons on tabs +} +``` + +### Packer.nvim + +```lua +use { + "pablopunk/unclutter.nvim", + requires = { "nvim-tree/nvim-web-devicons" }, -- optional, to show icons on tabs +} +``` + ## Features You're working on a large project and you're jumping through function definitions and index files that endup cluttering your tabline. *Unclutter.nvim* will: @@ -23,27 +57,35 @@ A minimal tabline with icons will show: Every other buffer will be closed at the time you leave it (`BufLeave`). -[🔭 Telescope integration](#telescopenvim-integration) +### 🔭 `telescope.nvim` integration -## Installation +If you use [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim), you can use it to list all your `unclutter.nvim` in a floating window: -Use your favorite package manager. Calling the `setup()` function is optional. +```lua +require('unclutter').telescope() +``` -### Lazy.nvim +Of course, you can map it to whatever you want: ```lua -{ - "pablopunk/unclutter.nvim", - dependencies = { "nvim-tree/nvim-web-devicons" }, -- optional, to show icons on tabs -} +vim.keymap.set("n", "b", require("unclutter").telescope, { noremap = true }) ``` -### Packer.nvim +![telescope integration](./art/telescope-integration.png) + +You can customize the format of the telescope results: ```lua -use { - "pablopunk/unclutter.nvim", - requires = { "nvim-tree/nvim-web-devicons" }, -- optional, to show icons on tabs +unclutter.telescope { format = "compact" } -- DEFAULT: folder/file.js +unclutter.telescope { format = "cwd" } -- path/folder/file.js +unclutter.telescope { format = "filename" } -- file.js +``` + +If you want to use the telescope integration without the tabline, you can disable it: + +```lua +require('unclutter').setup { + tabline = false, } ``` @@ -92,37 +134,6 @@ vim.keymap.set("n", "gp", unclutter.prev, { noremap = true }) I personally have a map to save a file to disk (`` will `:w`) so the buffer will be kept in the tabline whenever I do ``. -## `telescope.nvim` integration - -If you use [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim), you can use it to list all your `unclutter.nvim` in a floating window: - -```lua -require('unclutter').telescope() -``` - -Of course, you can map it to whatever you want: - -```lua -vim.keymap.set("n", "b", require("unclutter").telescope, { noremap = true }) -``` - -![telescope integration](./art/telescope-integration.png) - -You can customize the format of the telescope results: - -```lua -unclutter.telescope { format = "compact" } -- DEFAULT: folder/file.js -unclutter.telescope { format = "cwd" } -- path/folder/file.js -unclutter.telescope { format = "filename" } -- file.js -``` - -If you want to use the telescope integration without the tabline, you can disable it: - -```lua -require('unclutter').setup { - tabline = false, -} -``` ## Inspiration