Simplify TMUX config and add RAM monitor.

This commit is contained in:
2024-10-02 00:00:32 +01:00
parent b63a4f1b22
commit da1ac8eb6f
47 changed files with 14 additions and 2132 deletions

View File

@@ -85,109 +85,4 @@ require('lazy').setup({{ -- Syntax Highlighting / Simple Code Completion
vim.g.adwaita_transparent = true
vim.cmd.colorscheme "adwaita"
end
}, {
'nvim-lualine/lualine.nvim',
dependencies = {'nvim-tree/nvim-web-devicons'},
config = function()
local colors = {
cyan = '#2aa1b3',
black = '#1f1f1f',
white = '#ffffff',
red = '#c01c28',
grey = '#303030',
yellow = '#a2734c',
green = '#26a269'
}
local bubbles_theme = {
normal = {
a = {
fg = colors.black,
bg = colors.green
},
b = {
fg = colors.white,
bg = colors.grey
},
c = {
fg = colors.white
}
},
insert = {
a = {
fg = colors.black,
bg = colors.yellow
}
},
visual = {
a = {
fg = colors.black,
bg = colors.cyan
}
},
replace = {
a = {
fg = colors.black,
bg = colors.red
}
},
inactive = {
a = {
fg = colors.white,
bg = colors.black
},
b = {
fg = colors.white,
bg = colors.black
},
c = {
fg = colors.white
}
}
}
require('lualine').setup {
options = {
icons_enabled = true,
theme = bubbles_theme,
component_separators = '',
section_separators = {
left = '',
right = ''
}
},
sections = {
lualine_a = {{
'mode',
separator = {
left = ''
},
right_padding = 2
}},
lualine_b = {'filename', 'branch'},
lualine_c = {'%=' --[[ add your center compoentnts here in place of this comment ]] },
lualine_x = {},
lualine_y = {'filetype', 'progress'},
lualine_z = {{
'location',
separator = {
right = ''
},
left_padding = 2
}}
},
inactive_sections = {
lualine_a = {'filename'},
lualine_b = {},
lualine_c = {},
lualine_x = {},
lualine_y = {},
lualine_z = {'location'}
},
tabline = {},
extensions = {}
}
end
}})