fix indentation
This commit is contained in:
parent
e005338d68
commit
00e4d34f5f
10 changed files with 169 additions and 164 deletions
|
|
@ -1,7 +1,7 @@
|
|||
-- Adds git related signs to the gutter, as well as utilities for managing changes
|
||||
return {
|
||||
'lewis6991/gitsigns.nvim',
|
||||
opts = {
|
||||
'lewis6991/gitsigns.nvim',
|
||||
opts = {
|
||||
-- See `:help gitsigns.txt`
|
||||
signs = {
|
||||
add = { text = '+' },
|
||||
|
|
@ -34,5 +34,5 @@ opts = {
|
|||
return '<Ignore>'
|
||||
end, { expr = true, buffer = bufnr, desc = 'Jump to previous hunk' })
|
||||
end,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,9 @@ return {
|
|||
theme = 'auto',
|
||||
--component_separators = '⋮',
|
||||
component_separators = '⁞',
|
||||
section_separators = { left = '', right = '' },
|
||||
--section_separators = { left = '', right = '' },
|
||||
--section_separators = { left = '', right = '' },
|
||||
section_separators = { left = '', right = '' },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
return {
|
||||
'EdenEast/nightfox.nvim',
|
||||
lazy = true,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'duskfox'
|
||||
end,
|
||||
opts = {},
|
||||
--config = function()
|
||||
-- vim.cmd.colorscheme 'duskfox'
|
||||
--end
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,6 +14,6 @@ If you have huge amounts of files, consider adding some to `$HOME/.ignore`:
|
|||
.git/
|
||||
]]--
|
||||
return {
|
||||
"nvim-telescope/telescope-fzf-native.nvim",
|
||||
"nvim-telescope/telescope-fzf-native.nvim",
|
||||
build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build'
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,5 +46,5 @@ return {
|
|||
["buffers"] = { sort_mru = true, ignore_current_buffer = true },
|
||||
}
|
||||
})
|
||||
end,
|
||||
end
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
-- Shows context of code line
|
||||
-- Docs: https://github.com/nvim-treesitter/nvim-treesitter-context
|
||||
return {
|
||||
"nvim-treesitter/nvim-treesitter-context"
|
||||
"nvim-treesitter/nvim-treesitter-context",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,5 +44,5 @@ return {
|
|||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
end
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue