Merge branch 'master' of github.com:xxxZer0xxx/kickstart.nvim
This commit is contained in:
commit
877de2f520
8
init.lua
8
init.lua
|
@ -328,6 +328,7 @@ require('lazy').setup({
|
||||||
-- See `:help telescope` and `:help telescope.setup()`
|
-- See `:help telescope` and `:help telescope.setup()`
|
||||||
require('telescope').setup {
|
require('telescope').setup {
|
||||||
defaults = {
|
defaults = {
|
||||||
|
file_ignore_patterns = { '.git', 'node_modules', 'venv', '__pycache__' },
|
||||||
layout_strategy = 'flex',
|
layout_strategy = 'flex',
|
||||||
layout_config = {
|
layout_config = {
|
||||||
flex = {
|
flex = {
|
||||||
|
@ -349,7 +350,12 @@ require('lazy').setup({
|
||||||
-- i = { ['<c-enter>'] = 'to_fuzzy_refine' },
|
-- i = { ['<c-enter>'] = 'to_fuzzy_refine' },
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
-- pickers = {}
|
pickers = {
|
||||||
|
find_files = {
|
||||||
|
hidden = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
extensions = {
|
extensions = {
|
||||||
['ui-select'] = {
|
['ui-select'] = {
|
||||||
require('telescope.themes').get_dropdown(),
|
require('telescope.themes').get_dropdown(),
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
-- install without yarn or npm
|
|
||||||
return {
|
|
||||||
'iamcco/markdown-preview.nvim',
|
|
||||||
cmd = { 'MarkdownPreviewToggle', 'MarkdownPreview', 'MarkdownPreviewStop' },
|
|
||||||
ft = { 'markdown' },
|
|
||||||
build = function()
|
|
||||||
vim.fn['mkdp#util#install']()
|
|
||||||
end,
|
|
||||||
}
|
|
Loading…
Reference in New Issue