Skip to content

Commit 76bd9a1

Browse files
chore(docs): Remove duplicated section
Co-authored-by: Amalia Haible <florian@haible.de>
1 parent aa8d56e commit 76bd9a1

1 file changed

Lines changed: 4 additions & 52 deletions

File tree

README.md

Lines changed: 4 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<img alt="Contributors" src="https://img.shields.io/github/contributors/dmtrKovalenko/fff.nvim?color=%23DDB6F2&label=CONTRIBUTORS&logo=git&style=for-the-badge&logoColor=D9E0EE&labelColor=302D41"/></a>
1616
</p>
1717

18-
**FFF** stands for ~freakin fast fuzzy file finder~ (pick 3) and it is an opinionated fuzzy file picker for neovim. Just for files, but we'll try to solve file picking completely.
18+
**FFF** stands for ~freakin fast fuzzy file finder~ (pick 3) and it is an opinionated fuzzy file picker for neovim. Just for files, but we'll try to solve file picking completely.
1919

2020
It comes with a dedicated rust backend runtime that keep tracks of the file index, your file access and modifications, git status, and provides a comprehensive typo-resistant fuzzy search experience.
2121

@@ -66,7 +66,6 @@ FFF.nvim requires:
6666
}
6767
```
6868

69-
7069
### Default Configuration
7170

7271
FFF.nvim comes with sensible defaults. Here's the complete default configuration:
@@ -87,15 +86,15 @@ require("fff").setup({
8786
max_results = 60, -- Maximum search results to display
8887
max_threads = 4, -- Maximum threads for fuzzy search
8988

90-
-- Key mappings (supports both single keys and arrays for multiple bindings)
9189
keymaps = {
9290
close = '<Esc>',
9391
select = '<CR>',
9492
select_split = '<C-s>',
9593
select_vsplit = '<C-v>',
9694
select_tab = '<C-t>',
97-
move_up = { '<Up>', '<C-p>' }, -- Multiple bindings supported
98-
move_down = { '<Down>', '<C-n>' }, -- Multiple bindings supported
95+
-- Multiple bindings supported
96+
move_up = { '<Up>', '<C-p>' },
97+
move_down = { '<Down>', '<C-n>' },
9998
preview_scroll_up = '<C-u>',
10099
preview_scroll_down = '<C-d>',
101100
},
@@ -154,50 +153,3 @@ Toggle scoring information display:
154153
Plug 'MunifTanjim/nui.nvim'
155154
Plug 'dmtrKovalenko/fff.nvim', { 'do': 'cargo build --release' }
156155
````
157-
158-
## Configuration
159-
160-
### Default Configuration
161-
162-
FFF.nvim comes with sensible defaults. Here's the complete default configuration:
163-
164-
```lua
165-
require("fff").setup({
166-
-- UI dimensions and appearance
167-
width = 0.8, -- Window width as fraction of screen
168-
height = 0.8, -- Window height as fraction of screen
169-
preview_width = 0.5, -- Preview pane width as fraction of picker
170-
prompt = '🪿 ', -- Input prompt symbol
171-
title = 'FFF Files', -- Window title
172-
max_results = 60, -- Maximum search results to display
173-
max_threads = 4, -- Maximum threads for fuzzy search
174-
175-
keymaps = {
176-
close = '<Esc>',
177-
select = '<CR>',
178-
select_split = '<C-s>',
179-
select_vsplit = '<C-v>',
180-
select_tab = '<C-t>',
181-
move_up = { '<Up>', '<C-p>' }, -- Multiple bindings supported
182-
move_down = { '<Down>', '<C-n>' }, -- Multiple bindings supported
183-
preview_scroll_up = '<C-u>',
184-
preview_scroll_down = '<C-d>',
185-
},
186-
187-
hl = {
188-
border = 'FloatBorder',
189-
normal = 'Normal',
190-
cursor = 'CursorLine',
191-
matched = 'IncSearch',
192-
title = 'Title',
193-
prompt = 'Question',
194-
active_file = 'Visual',
195-
frecency = 'Number',
196-
debug = 'Comment',
197-
},
198-
199-
debug = {
200-
show_scores = true, -- We hope for your collaboratio
201-
},
202-
})
203-
```

0 commit comments

Comments
 (0)