Compare commits
2 Commits
0fd17f71a1
...
a80bb51283
| Author | SHA1 | Date | |
|---|---|---|---|
| a80bb51283 | |||
| 5b2d9c71e7 |
4
.config/nvim/lua/user/plugins/tab_autodetect.lua
Normal file
4
.config/nvim/lua/user/plugins/tab_autodetect.lua
Normal file
@ -0,0 +1,4 @@
|
||||
return {
|
||||
'https://github.com/tpope/vim-sleuth',
|
||||
lazy = false,
|
||||
}
|
||||
@ -1,13 +1,18 @@
|
||||
return {
|
||||
{
|
||||
"nvim-telescope/telescope.nvim",
|
||||
dependencies = { "nvim-telescope/telescope-media-files.nvim", "nvim-lua/plenary.nvim" },
|
||||
dependencies = {
|
||||
"nvim-telescope/telescope-media-files.nvim",
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-telescope/telescope-fzf-native.nvim",
|
||||
},
|
||||
lazy = false,
|
||||
config = function(_, _opts)
|
||||
local telescope = require("telescope")
|
||||
telescope.setup(_opts)
|
||||
|
||||
telescope.load_extension("media_files")
|
||||
telescope.load_extension("fzf")
|
||||
|
||||
local which_key = require("which-key")
|
||||
which_key.add({
|
||||
@ -117,5 +122,9 @@ return {
|
||||
},
|
||||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
'nvim-telescope/telescope-fzf-native.nvim',
|
||||
build = 'make'
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user