Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nvim-telescope/telescope-fzy-native.nvim
FZY style sorter that is compiled
https://github.com/nvim-telescope/telescope-fzy-native.nvim
Last synced: 14 days ago
JSON representation
FZY style sorter that is compiled
- Host: GitHub
- URL: https://github.com/nvim-telescope/telescope-fzy-native.nvim
- Owner: nvim-telescope
- License: mit
- Created: 2020-11-23T13:08:55.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-11T06:56:14.000Z (about 2 years ago)
- Last Synced: 2024-08-01T16:48:37.613Z (3 months ago)
- Language: Lua
- Size: 7.81 KB
- Stars: 177
- Watchers: 5
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# telescope-fzy-native.nvim
FZY style sorter that is compiled
## Installation
It is possible that you will already have a compiled binary matching your system. You can find out information
about compiling the binary at the implementation repo: https://github.com/romgrk/fzy-lua-nativeYou can install this with your favorite package manager. Make sure that it installs git submodules if stuff isn't working!
## Usage
You can override the file & generic sorter by default simply by adding
```lua
require('telescope').load_extension('fzy_native')
```somewhere after your `require('telescope').setup()` call.
To configure them individually, you should do the following:
```lua
require('telescope').setup {
extensions = {
fzy_native = {
override_generic_sorter = false,
override_file_sorter = true,
}
}
}
require('telescope').load_extension('fzy_native')
```