mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-26 13:07:45 +01:00
nvim: cleaned up configs
This commit is contained in:
parent
8014181fbd
commit
c49698c79f
@ -13,6 +13,15 @@ end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
return require("lazy").setup({
|
||||
-- colorscheme
|
||||
{
|
||||
'tiyn/tccs.nvim',
|
||||
config = function()
|
||||
require('tccs').setup()
|
||||
vim.cmd('colorscheme tccs')
|
||||
end
|
||||
},
|
||||
|
||||
-- display git status per line
|
||||
{
|
||||
'lewis6991/gitsigns.nvim',
|
||||
@ -320,21 +329,34 @@ return require("lazy").setup({
|
||||
dependencies = {
|
||||
-- automatically close html-tags
|
||||
'windwp/nvim-ts-autotag',
|
||||
-- color brackets
|
||||
'p00f/nvim-ts-rainbow',
|
||||
},
|
||||
opts = {
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"c",
|
||||
"cpp",
|
||||
"css",
|
||||
"html",
|
||||
"java",
|
||||
"markdown",
|
||||
"latex",
|
||||
"python",
|
||||
},
|
||||
autotag = { enable = true }
|
||||
}
|
||||
config = function()
|
||||
require("nvim-treesitter").setup({
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"c",
|
||||
"cpp",
|
||||
"css",
|
||||
"html",
|
||||
"java",
|
||||
"markdown",
|
||||
"latex",
|
||||
"python",
|
||||
},
|
||||
autotag = { enable = true },
|
||||
})
|
||||
require("nvim-treesitter.configs").setup({
|
||||
rainbow = {
|
||||
enable = true,
|
||||
extended_mode = true,
|
||||
max_file_lines = nil,
|
||||
-- colors = {},
|
||||
-- termcolors = {}
|
||||
}
|
||||
})
|
||||
end
|
||||
},
|
||||
|
||||
-- folding improvements
|
||||
@ -418,15 +440,6 @@ return require("lazy").setup({
|
||||
end
|
||||
},
|
||||
|
||||
-- colorscheme
|
||||
{
|
||||
'tiyn/tccs.nvim',
|
||||
config = function()
|
||||
require('tccs').setup()
|
||||
require('tccs').load()
|
||||
end
|
||||
},
|
||||
|
||||
-- improved wild menu
|
||||
{
|
||||
'gelguy/wilder.nvim',
|
||||
|
Loading…
x
Reference in New Issue
Block a user