pain v4
This commit is contained in:
parent
11fc25f9c7
commit
18397725c3
4 changed files with 19 additions and 2 deletions
9
nvim/lua/plugins/conform.lua
Normal file
9
nvim/lua/plugins/conform.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
'stevearc/conform.nvim',
|
||||
opts = {
|
||||
format_on_save = {
|
||||
timeout_ms = 500,
|
||||
lsp_format = "fallback"
|
||||
}
|
||||
}
|
||||
}
|
8
nvim/lua/plugins/gitsigns.lua
Normal file
8
nvim/lua/plugins/gitsigns.lua
Normal file
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
'lewis6991/gitsigns.nvim',
|
||||
config = function ()
|
||||
require('gitsigns').setup {
|
||||
current_line_blame = false
|
||||
}
|
||||
end
|
||||
}
|
|
@ -14,11 +14,10 @@ return {
|
|||
|
||||
sources = {
|
||||
"filesystem",
|
||||
"git_status",
|
||||
},
|
||||
|
||||
source_selector = {
|
||||
winbar = true
|
||||
winbar = false
|
||||
},
|
||||
|
||||
filesystem = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue