fix indentation

This commit is contained in:
Oliver Ladner 2023-11-24 17:40:00 +01:00
commit 00e4d34f5f
10 changed files with 169 additions and 164 deletions

View file

@ -1,7 +1,7 @@
-- Adds git related signs to the gutter, as well as utilities for managing changes -- Adds git related signs to the gutter, as well as utilities for managing changes
return { return {
'lewis6991/gitsigns.nvim', 'lewis6991/gitsigns.nvim',
opts = { opts = {
-- See `:help gitsigns.txt` -- See `:help gitsigns.txt`
signs = { signs = {
add = { text = '+' }, add = { text = '+' },
@ -34,5 +34,5 @@ opts = {
return '<Ignore>' return '<Ignore>'
end, { expr = true, buffer = bufnr, desc = 'Jump to previous hunk' }) end, { expr = true, buffer = bufnr, desc = 'Jump to previous hunk' })
end, end,
}, },
} }

View file

@ -7,7 +7,9 @@ return {
theme = 'auto', theme = 'auto',
--component_separators = '⋮', --component_separators = '⋮',
component_separators = '', component_separators = '',
section_separators = { left = '', right = '' }, --section_separators = { left = '', right = '' },
--section_separators = { left = '', right = '' },
section_separators = { left = '', right = '' },
}, },
}, },
} }

View file

@ -1,7 +1,9 @@
return { return {
'EdenEast/nightfox.nvim', 'EdenEast/nightfox.nvim',
lazy = true,
priority = 1000, priority = 1000,
config = function() opts = {},
vim.cmd.colorscheme 'duskfox' --config = function()
end, -- vim.cmd.colorscheme 'duskfox'
--end
} }

View file

@ -14,6 +14,6 @@ If you have huge amounts of files, consider adding some to `$HOME/.ignore`:
.git/ .git/
]]-- ]]--
return { 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' build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build'
} }

View file

@ -46,5 +46,5 @@ return {
["buffers"] = { sort_mru = true, ignore_current_buffer = true }, ["buffers"] = { sort_mru = true, ignore_current_buffer = true },
} }
}) })
end, end
} }

View file

@ -1,5 +1,6 @@
-- Shows context of code line -- Shows context of code line
-- Docs: https://github.com/nvim-treesitter/nvim-treesitter-context -- Docs: https://github.com/nvim-treesitter/nvim-treesitter-context
return { return {
"nvim-treesitter/nvim-treesitter-context" "nvim-treesitter/nvim-treesitter-context",
event = { "BufReadPre", "BufNewFile" },
} }

View file

@ -44,5 +44,5 @@ return {
}, },
}, },
}) })
end, end
} }