mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 01:39:54 +01:00
laststatus = 0 -> fix tmux bar with lualine
This commit is contained in:
@@ -11,9 +11,3 @@ vim.filetype.add({
|
|||||||
})
|
})
|
||||||
|
|
||||||
vim.cmd [[colorscheme catppuccin-macchiato]]
|
vim.cmd [[colorscheme catppuccin-macchiato]]
|
||||||
|
|
||||||
-- vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
|
||||||
-- vim.api.nvim_set_hl(0, "NormalNC", { bg = "none" })
|
|
||||||
-- vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
|
||||||
-- vim.api.nvim_set_hl(0, "NvimTreeNormal", { bg = "none" })
|
|
||||||
-- vim.api.nvim_set_hl(0, "NvimTreeNormalNC", { bg = "none" })
|
|
||||||
|
|||||||
@@ -65,11 +65,10 @@ local virtual_env = function()
|
|||||||
end
|
end
|
||||||
|
|
||||||
require("lualine").setup {
|
require("lualine").setup {
|
||||||
laststatus = 0,
|
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = true,
|
icons_enabled = true,
|
||||||
theme = "auto",
|
theme = "auto",
|
||||||
globalstatus = true,
|
globalstatus = false,
|
||||||
component_separators = '',
|
component_separators = '',
|
||||||
section_separators = {left = '', right = ''},
|
section_separators = {left = '', right = ''},
|
||||||
disabled_filetypes = {},
|
disabled_filetypes = {},
|
||||||
@@ -125,3 +124,5 @@ require("lualine").setup {
|
|||||||
tabline = {},
|
tabline = {},
|
||||||
extensions = {"quickfix", "fugitive", "nvim-tree"}
|
extensions = {"quickfix", "fugitive", "nvim-tree"}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vim.o.laststatus = 0 -- required for some reason -> avoid two bar lualine /w tmux
|
||||||
|
|||||||
+1
-1
@@ -22,7 +22,7 @@ vim.opt.colorcolumn = "100"
|
|||||||
vim.opt.formatoptions = "rqnj"
|
vim.opt.formatoptions = "rqnj"
|
||||||
vim.o.sessionoptions =
|
vim.o.sessionoptions =
|
||||||
"blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
"blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
|
||||||
vim.o.laststatus = 3
|
vim.o.laststatus = 0
|
||||||
vim.o.clipboard = "unnamedplus"
|
vim.o.clipboard = "unnamedplus"
|
||||||
vim.o.cursorline = true
|
vim.o.cursorline = true
|
||||||
vim.o.cursorlineopt = "number"
|
vim.o.cursorlineopt = "number"
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
|
"vimpostor/vim-tpipeline",
|
||||||
|
-- config = function () require("tpipeline") end
|
||||||
|
}, {
|
||||||
"aznhe21/actions-preview.nvim",
|
"aznhe21/actions-preview.nvim",
|
||||||
config = function() require("actions-preview") end
|
config = function() require("actions-preview") end
|
||||||
}, {
|
}, {
|
||||||
|
|||||||
Reference in New Issue
Block a user