lualine and colorscheme changes
This commit is contained in:
parent
76d29c0ba9
commit
a95d9001b2
7 changed files with 48 additions and 39 deletions
1
init.lua
1
init.lua
|
@ -7,7 +7,6 @@ require("user.notify")
|
|||
require("user.navic")
|
||||
require("user.cmp")
|
||||
require("user.lsp")
|
||||
require("user.colorscheme")
|
||||
require("user.telescope")
|
||||
require("user.treesitter")
|
||||
require("user.autopairs")
|
||||
|
|
|
@ -21,7 +21,7 @@ bufferline.setup({
|
|||
tab_size = 21,
|
||||
diagnostics = "nvim_lsp",
|
||||
diagnostics_update_in_insert = true,
|
||||
offsets = { { filetype = "NvimTree", text = "" } },
|
||||
offsets = { { filetype = "NvimTree", text = "", padding = 1 } },
|
||||
show_buffer_icons = true,
|
||||
show_buffer_close_icons = true,
|
||||
show_close_icon = true,
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
vim.g.nord_italic = false
|
||||
vim.g.nord_contrast = true
|
||||
vim.g.nord_borders = true
|
||||
require("nord").set()
|
||||
require("lsp-colors").setup()
|
|
@ -6,10 +6,26 @@ end
|
|||
lualine.setup({
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = "auto",
|
||||
theme = "onenord",
|
||||
component_separators = { left = "", right = "" },
|
||||
section_separators = { left = "", right = "" },
|
||||
disabled_filetypes = { "alpha", "NvimTree" },
|
||||
disabled_filetypes = {
|
||||
statusline = { "alpha", "NvimTree" },
|
||||
winbar = {
|
||||
"help",
|
||||
"startify",
|
||||
"dashboard",
|
||||
"packer",
|
||||
"neogitstatus",
|
||||
"NvimTree",
|
||||
"Trouble",
|
||||
"alpha",
|
||||
"lir",
|
||||
"Outline",
|
||||
"spectre_panel",
|
||||
"toggleterm",
|
||||
},
|
||||
},
|
||||
always_divide_middle = true,
|
||||
},
|
||||
sections = {
|
||||
|
@ -28,6 +44,22 @@ lualine.setup({
|
|||
lualine_y = {},
|
||||
lualine_z = {},
|
||||
},
|
||||
winbar = {
|
||||
lualine_a = { require("user.winbar").get_winbar() },
|
||||
lualine_b = {},
|
||||
lualine_c = {},
|
||||
lualine_x = {},
|
||||
lualine_y = {},
|
||||
lualine_z = {},
|
||||
},
|
||||
inactive_winbar = {
|
||||
lualine_a = {},
|
||||
lualine_b = {},
|
||||
lualine_c = {},
|
||||
lualine_x = {},
|
||||
lualine_y = {},
|
||||
lualine_z = {},
|
||||
},
|
||||
tabline = {},
|
||||
extensions = {
|
||||
"nvim-tree",
|
||||
|
|
|
@ -36,7 +36,6 @@ vim.opt.incsearch = true
|
|||
vim.opt.colorcolumn = "120"
|
||||
vim.opt.list = true
|
||||
vim.opt.listchars:append("lead:.")
|
||||
vim.opt.winbar = "%{%v:lua.require'user.winbar'.get_winbar()%}"
|
||||
vim.opt.foldcolumn = "2"
|
||||
vim.opt.foldlevel = 99
|
||||
vim.opt.foldlevelstart = -1
|
||||
|
|
|
@ -48,9 +48,19 @@ return packer.startup(function(use)
|
|||
use("antoinemadec/FixCursorHold.nvim")
|
||||
use("kevinhwang91/promise-async")
|
||||
|
||||
-- Themes
|
||||
use("shaunsingh/nord.nvim")
|
||||
use("folke/lsp-colors.nvim")
|
||||
-- Theme
|
||||
use({
|
||||
"rmehri01/onenord.nvim",
|
||||
config = function()
|
||||
require("onenord").setup()
|
||||
end,
|
||||
})
|
||||
use({
|
||||
"folke/lsp-colors.nvim",
|
||||
config = function()
|
||||
require("lsp-colors").setup()
|
||||
end,
|
||||
})
|
||||
|
||||
-- Completion
|
||||
use("hrsh7th/nvim-cmp")
|
||||
|
|
|
@ -7,29 +7,6 @@ local function is_empty(s)
|
|||
return s == nil or s == ""
|
||||
end
|
||||
|
||||
M.winbar_filetype_exclude = {
|
||||
"help",
|
||||
"startify",
|
||||
"dashboard",
|
||||
"packer",
|
||||
"neogitstatus",
|
||||
"NvimTree",
|
||||
"Trouble",
|
||||
"alpha",
|
||||
"lir",
|
||||
"Outline",
|
||||
"spectre_panel",
|
||||
"toggleterm",
|
||||
}
|
||||
|
||||
local excludes = function()
|
||||
if vim.tbl_contains(M.winbar_filetype_exclude, vim.bo.filetype) then
|
||||
vim.opt_local.winbar = nil
|
||||
return true
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local function get_filename()
|
||||
return "%#WinBarFilename#" .. "%t" .. "%*"
|
||||
end
|
||||
|
@ -68,9 +45,6 @@ local function get_fileicon()
|
|||
end
|
||||
|
||||
function M.get_winbar()
|
||||
if excludes() then
|
||||
return ""
|
||||
end
|
||||
if navic.is_available() then
|
||||
return get_fileicon() .. get_filename() .. get_location()
|
||||
else
|
||||
|
|
Reference in a new issue