linting
This commit is contained in:
@@ -29,7 +29,7 @@ return {
|
|||||||
|
|
||||||
config = function()
|
config = function()
|
||||||
-- Telescope setup
|
-- Telescope setup
|
||||||
require("telescope").setup {
|
require("telescope").setup({
|
||||||
-- Telescope configuration
|
-- Telescope configuration
|
||||||
defaults = {
|
defaults = {
|
||||||
layout_strategy = "horizontal",
|
layout_strategy = "horizontal",
|
||||||
@@ -37,16 +37,16 @@ return {
|
|||||||
sorting_strategy = "descending",
|
sorting_strategy = "descending",
|
||||||
winblend = 0,
|
winblend = 0,
|
||||||
vimgrep_arguments = {
|
vimgrep_arguments = {
|
||||||
'rg',
|
"rg",
|
||||||
'--color=never',
|
"--color=never",
|
||||||
'--no-heading',
|
"--no-heading",
|
||||||
'--with-filename',
|
"--with-filename",
|
||||||
'--line-number',
|
"--line-number",
|
||||||
'--column',
|
"--column",
|
||||||
'--smart-case',
|
"--smart-case",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
})
|
||||||
-- Load the fzf extension
|
-- Load the fzf extension
|
||||||
require("telescope").load_extension("fzf")
|
require("telescope").load_extension("fzf")
|
||||||
end,
|
end,
|
||||||
|
|||||||
@@ -3,8 +3,7 @@ require("nvim-treesitter.install").prefer_git = false
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
build = function()
|
build = function() end,
|
||||||
end,
|
|
||||||
opts = {
|
opts = {
|
||||||
highlight = { enable = true },
|
highlight = { enable = true },
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
|||||||
Reference in New Issue
Block a user