Refresh generated neovim config
This commit is contained in:
@ -17,7 +17,7 @@ Highly experimental plugin that completely replaces the UI for `messages`, `cmdl
|
||||
- 💻 fully customizable **cmdline** with icons
|
||||
- 💅 **syntax highlighting** for `vim` and `lua` on the **cmdline**
|
||||
- 🚥 **statusline** components
|
||||
- 🔭 open message history in [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
|
||||
- 🔭 open message history in [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim) or [fzf-lua](https://github.com/ibhagwan/fzf-lua)
|
||||
|
||||
## 🔥 Status
|
||||
|
||||
@ -123,7 +123,7 @@ Check the [wiki](https://github.com/folke/noice.nvim/wiki/Configuration-Recipes)
|
||||
filter = { pattern = "^:%s*!", icon = "$", lang = "bash" },
|
||||
lua = { pattern = { "^:%s*lua%s+", "^:%s*lua%s*=%s*", "^:%s*=%s*" }, icon = "", lang = "lua" },
|
||||
help = { pattern = "^:%s*he?l?p?%s+", icon = "" },
|
||||
input = {}, -- Used by input()
|
||||
input = { view = "cmdline_input", icon = " " }, -- Used by input()
|
||||
-- lua = false, -- to disable a format, set to `false`
|
||||
},
|
||||
},
|
||||
@ -283,12 +283,6 @@ Check the [wiki](https://github.com/folke/noice.nvim/wiki/Configuration-Recipes)
|
||||
health = {
|
||||
checker = true, -- Disable if you don't want health checks to run
|
||||
},
|
||||
smart_move = {
|
||||
-- noice tries to move out of the way of existing floating windows.
|
||||
enabled = true, -- you can disable this behaviour here
|
||||
-- add any filetypes here, that shouldn't trigger smart move.
|
||||
excluded_filetypes = { "cmp_menu", "cmp_docs", "notify" },
|
||||
},
|
||||
---@type NoicePresets
|
||||
presets = {
|
||||
-- you can enable a preset by setting it to true, or a table that will override the preset config
|
||||
@ -530,6 +524,8 @@ Formatters are used in `format` definitions. **Noice** includes the following bu
|
||||
},
|
||||
telescope = ..., -- formatter used to display telescope results
|
||||
telescope_preview = ..., -- formatter used to preview telescope results
|
||||
fzf = ..., -- formatter used to display fzf results
|
||||
fzf_preview = ..., -- formatter used to preview fzf results
|
||||
lsp_progress = ..., -- formatter used by lsp progress
|
||||
lsp_progress_done = ..., -- formatter used by lsp progress
|
||||
}
|
||||
@ -640,6 +636,11 @@ require("lualine").setup({
|
||||
|
||||
</details>
|
||||
|
||||
## 🔭 Pickers
|
||||
|
||||
For convenience, you can do `:Noice pick`, which will open a picker with all the messages in the history,
|
||||
either with `telescope` or `fzf-lua`.
|
||||
|
||||
## 🔭 Telescope
|
||||
|
||||
In order to use **Noice** in **Telescope**, you can either do `:Noice telescope`,
|
||||
@ -650,6 +651,11 @@ The results panel is formatted using `config.format.formatters.telescope`. The p
|
||||
require("telescope").load_extension("noice")
|
||||
```
|
||||
|
||||
## 🔭 Fzf Lua
|
||||
|
||||
In order to use **Noice** in **FzfLua**, you can do `:Noice fzf`.
|
||||
The results panel is formatted using `config.format.formatters.fzf`. The preview is formatted with `config.format.formatters.telescope_fzf`
|
||||
|
||||
## 🚀 Usage
|
||||
|
||||
- `:Noice` or `:Noice history` shows the message history
|
||||
|
||||
Reference in New Issue
Block a user