neovim: move most of files to after/plugin dir
This commit is contained in:
112
neovim/.config/nvim/after/plugin/lualine.lua
Normal file
112
neovim/.config/nvim/after/plugin/lualine.lua
Normal file
@@ -0,0 +1,112 @@
|
||||
local lualine = require("lualine")
|
||||
local devicons = require("nvim-web-devicons")
|
||||
local pkgInfo = require("package-info")
|
||||
|
||||
local mode = {
|
||||
"mode",
|
||||
}
|
||||
|
||||
local branch = {
|
||||
"branch",
|
||||
icons_enabled = true,
|
||||
icon = "",
|
||||
}
|
||||
|
||||
local diagnostics = {
|
||||
"diagnostics",
|
||||
sections = { "error", "warn", "info", "hint" },
|
||||
always_visible = true,
|
||||
}
|
||||
|
||||
local filename = {
|
||||
function()
|
||||
local filetype = vim.bo.filetype
|
||||
local filename = vim.fn.expand("%:t")
|
||||
local fileext = vim.fn.expand("%:e")
|
||||
local icon = devicons.get_icon(filename, fileext)
|
||||
|
||||
if filetype == "fugitive" then
|
||||
icon = devicons.get_icons().git.icon
|
||||
filename = "git"
|
||||
end
|
||||
|
||||
if not icon then
|
||||
return filename
|
||||
end
|
||||
|
||||
return icon .. " " .. filename
|
||||
end,
|
||||
}
|
||||
|
||||
local fileformat = {
|
||||
function()
|
||||
return "[" .. vim.bo.fileformat .. "]"
|
||||
end,
|
||||
}
|
||||
|
||||
local tabstop = {
|
||||
function()
|
||||
local tabstop = vim.bo.tabstop
|
||||
local expandtab = vim.bo.expandtab
|
||||
|
||||
local method = expandtab == true and "spaces" or "tabs"
|
||||
local format = tabstop .. " " .. method
|
||||
|
||||
return format
|
||||
end,
|
||||
}
|
||||
|
||||
local npm = {
|
||||
function()
|
||||
return pkgInfo.get_status()
|
||||
end,
|
||||
}
|
||||
|
||||
local location = {
|
||||
function()
|
||||
local line = vim.fn.line(".")
|
||||
local total_lines = vim.api.nvim_buf_line_count(0)
|
||||
|
||||
local percent = math.floor(line / total_lines * 100)
|
||||
|
||||
return line .. "/" .. total_lines .. " (" .. percent .. "%%)"
|
||||
end,
|
||||
}
|
||||
|
||||
local diff = {
|
||||
"diff",
|
||||
}
|
||||
|
||||
local tabs = {
|
||||
"tabs",
|
||||
mode = 1,
|
||||
}
|
||||
|
||||
local windows = {
|
||||
"windows",
|
||||
disabled_buftypes = { "nofile" },
|
||||
filetype_names = {
|
||||
NvimTree = "File Tree",
|
||||
},
|
||||
}
|
||||
|
||||
lualine.setup({
|
||||
options = {
|
||||
component_separators = "",
|
||||
section_separators = "",
|
||||
globalstatus = true,
|
||||
},
|
||||
tabline = {
|
||||
lualine_a = { tabs },
|
||||
lualine_z = { windows },
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { mode },
|
||||
lualine_b = { branch },
|
||||
lualine_c = { diagnostics },
|
||||
lualine_x = { npm, diff, location, tabstop, fileformat },
|
||||
lualine_y = { filename },
|
||||
lualine_z = {},
|
||||
},
|
||||
extensions = { "nvim-tree", "fugitive", "quickfix" },
|
||||
})
|
||||
Reference in New Issue
Block a user