mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
- Added the basic setting for functional LSP. - Split configurations into multiple files suitable for Lazy usage.
11 lines
201 B
Lua
11 lines
201 B
Lua
return {
|
|
"nvim-lualine/lualine.nvim",
|
|
config = function()
|
|
require("lualine").setup({
|
|
options = {
|
|
theme = "powerline_dark"
|
|
}
|
|
})
|
|
end
|
|
}
|