ignore .git
This commit is contained in:
parent
a6b6aa15b3
commit
43b1660a24
1 changed files with 13 additions and 4 deletions
|
@ -36,7 +36,19 @@ lvim.plugins = {
|
|||
|
||||
lvim.builtin.notify.active = true
|
||||
lvim.builtin.terminal.active = true
|
||||
|
||||
lvim.builtin.telescope.defaults.vimgrep_arguments = {
|
||||
vimgrep_arguments = {
|
||||
"rg",
|
||||
"--color=never",
|
||||
"--no-heading",
|
||||
"--with-filename",
|
||||
"--line-number",
|
||||
"--column",
|
||||
"--smart-case",
|
||||
"--hidden",
|
||||
-- "--glob=!.git/",
|
||||
},
|
||||
}
|
||||
local function pick_color()
|
||||
local colors = { "String", "Identifier", "Keyword", "Number", "Constant" }
|
||||
return colors[math.random(#colors)]
|
||||
|
@ -81,9 +93,6 @@ lvim.builtin.alpha.dashboard.section.header.val = {
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-- simpler header
|
||||
--[[
|
||||
╦ ╦ ╦╔╗╔╔═╗╦═╗╦ ╦╦╔╦╗
|
||||
|
|
Loading…
Reference in a new issue