forgot to add new files

This commit is contained in:
Tiago Sousa 2023-11-10 21:16:00 +00:00
parent 5335419073
commit 947d39d9d2
3 changed files with 74 additions and 0 deletions

View file

@ -0,0 +1,46 @@
return {
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
require('lualine').setup {
options = {
icons_enabled = true,
theme = 'auto',
component_separators = { left = '', right = '' },
section_separators = { left = '', right = '' },
disabled_filetypes = {
statusline = {},
winbar = {},
},
ignore_focus = {},
always_divide_middle = true,
globalstatus = false,
refresh = {
statusline = 1000,
tabline = 1000,
winbar = 1000,
}
},
sections = {
lualine_a = { 'mode' },
lualine_b = { 'branch', 'diff', 'diagnostics' },
lualine_c = { 'filename' },
lualine_x = { 'encoding', 'fileformat', 'filetype' },
lualine_y = { 'progress' },
lualine_z = { 'location' }
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = { 'filename' },
lualine_x = { 'location' },
lualine_y = {},
lualine_z = {}
},
tabline = {},
winbar = {},
inactive_winbar = {},
extensions = {}
}
end
}

View file

@ -0,0 +1,19 @@
return {
"williamboman/mason.nvim",
config = function()
local present, mason = pcall(require, "mason")
vim.api.nvim_create_augroup("_mason", { clear = true })
options = {
PATH = "skip",
ui = {
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = ""
},
},
max_concurrent_installers = 10,
}
mason.setup(options)
end
}

View file

@ -0,0 +1,9 @@
return {
"stevearc/dressing.nvim",
"nvim-lua/plenary.nvim",
"nvim-lua/popup.nvim",
"tpope/vim-surround",
"nvim-lualine/lualine.nvim",
"nvim-treesitter/playground",
"runoshun/vim-alloy",
}