pain v4
This commit is contained in:
parent
11fc25f9c7
commit
18397725c3
4 changed files with 19 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
|||
"barbar.nvim": { "branch": "master", "commit": "d181f2cfd4b828f9c6f1e10e69c68241de59f54f" },
|
||||
"cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" },
|
||||
"cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
|
||||
"conform.nvim": { "branch": "master", "commit": "9a06e83527407a7600a2fe4e0d10adf432b6215e" },
|
||||
"dashboard-nvim": { "branch": "master", "commit": "b88c997f468a1bacb1e9b13ff3b567638caa06e6" },
|
||||
"diffview.nvim": { "branch": "main", "commit": "4516612fe98ff56ae0415a259ff6361a89419b0a" },
|
||||
"dracula.nvim": { "branch": "master", "commit": "194f10d0312236164f3865d404b4bcdcfd41deb7" },
|
||||
|
|
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…
Reference in a new issue