Neovim/lua/plugins/onedark.lua

21 lines
443 B
Lua
Raw Normal View History

2024-08-16 17:24:09 +00:00
return {
{
'olimorris/onedarkpro.nvim',
lazy = false,
priority = 1000,
opts = {
plugins = {
treesitter = true,
nvim_lsp = true,
nvim_tree = true,
barbar = true,
trouble = true,
diffview = true,
},
options = {
cursorline = true
}
}
}
}