forked from gh0stzk/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added nixfmt formatter and added it to conform (auto formatter)
Added options to nil lsp setup in lua config Added neovim plugin file for telescope
- Loading branch information
Showing
5 changed files
with
76 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
require("telescope").setup({ | ||
extensions = { | ||
fzf = { | ||
fuzzy = true, -- false will only do exact matching | ||
override_generic_sorter = true, -- override the generic sorter | ||
override_file_sorter = true, -- override the file sorter | ||
case_mode = "smart_case", -- or "ignore_case" or "respect_case" | ||
-- the default case_mode is "smart_case" | ||
}, | ||
}, | ||
}) | ||
require("telescope").load_extension("fzf") |