chore(file-navigation): clean up preview title prop

This commit is contained in:
Matt Leong 2021-10-20 08:11:21 -07:00
parent 968338ac49
commit 093fbc0f78
2 changed files with 3 additions and 5 deletions

View file

@ -39,16 +39,13 @@ require('telescope').setup({
}, },
}, },
sort_mru = true, sort_mru = true,
-- sort_lastused = true,
preview_title = false, preview_title = false,
}, },
lsp_references = { lsp_references = {
-- mappings = mappings.normal,
initial_mode = 'normal', initial_mode = 'normal',
sorting_strategy = 'ascending', sorting_strategy = 'ascending',
layout_strategy = 'cursor', layout_strategy = 'cursor',
preview_title = '', preview_title = false,
-- dynamic_preview_title = true,
results_title = false, results_title = false,
prompt_title = 'References', prompt_title = 'References',
layout_config = { layout_config = {

View file

@ -33,7 +33,7 @@ _While CosmicNvim is geared specifically toward TypeScript/JavaScript developmen
### How to install ### How to install
_Requires Neovim (0.6.0+)_ _Requires Neovim (>=0.5.1)_
Using [stow](https://www.gnu.org/software/stow/) Using [stow](https://www.gnu.org/software/stow/)
@ -64,6 +64,7 @@ You will need to set up Packers compiled file via the steps below:
1. Start NVIM 1. Start NVIM
2. Run `PackerUpdate` & `PackerCompile` 2. Run `PackerUpdate` & `PackerCompile`
3. Restart NVIM 3. Restart NVIM
4. Install LSPServers, `:LspInstallInfo` or `:LspInstall tsserver`
_Install script coming soon..._ _Install script coming soon..._