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
|
-- 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,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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 = '' },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -46,5 +46,5 @@ return {
|
||||||
["buffers"] = { sort_mru = true, ignore_current_buffer = true },
|
["buffers"] = { sort_mru = true, ignore_current_buffer = true },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end,
|
end
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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" },
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -44,5 +44,5 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end,
|
end
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue