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