fix: Removing old language

This commit is contained in:
rockerBOO
2020-09-16 13:07:27 -04:00
parent e92ba423f9
commit 2766cb24ca

View File

@@ -287,19 +287,17 @@ Use the telescope.
Common groups of settings can be setup to allow for themes. We have some built in themes but are looking for more cool options. Common groups of settings can be setup to allow for themes. We have some built in themes but are looking for more cool options.
Right now here is how we do it in lua. Working on a simplier integration with vimscript for bindings.
```vim ```vim
nnoremap <Leader>f :lua require'telescope.builtin'.find_files(require('telescope.themes').get_dropdown({}))<cr> nnoremap <Leader>f :lua require'telescope.builtin'.find_files(require('telescope.themes').get_dropdown({}))<cr>
``` ```
Then you can put your configuration into `get_dropdown` Then you can put your configuration into `get_dropdown({})`
```vim ```vim
nnoremap <Leader>f :lua require'telescope.builtin'.find_files(require('telescope.themes').get_dropdown({ winblend = 10 }))<cr> nnoremap <Leader>f :lua require'telescope.builtin'.find_files(require('telescope.themes').get_dropdown({ winblend = 10 }))<cr>
``` ```
If you wish to make theme, check out `lua/telescope/themes.lua`. If you need more features make an issue :). If you wish to make theme, check out `lua/telescope/themes.lua`. If you need more features, make an issue :).
## Goals ## Goals