diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-01-13 13:21:31 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-01-13 13:21:31 +0100 |
commit | b9513f21ae630ffcb93d68c21eeb70b5eebe74ae (patch) | |
tree | 1f67963996cc1dea426f650bf94f22a0843d5f88 /Common/nvim/lua/plugins.lua | |
parent | abbbe7a4d3062ea2df0dd263528d824b7e4363a3 (diff) | |
download | dotfiles-b9513f21ae630ffcb93d68c21eeb70b5eebe74ae.tar.gz dotfiles-b9513f21ae630ffcb93d68c21eeb70b5eebe74ae.zip |
Simplify nvim xp
Diffstat (limited to 'Common/nvim/lua/plugins.lua')
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index 9669d2c..e4ba713 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -34,16 +34,19 @@ return require('packer').startup(function(use) requires = { 'kyazdani42/nvim-web-devicons', opt = true }, config = function() require('lualine').setup { - options = { theme = 'onedark' }, + options = { + theme = 'Tomorrow', + component_separators = '', + section_separators = '' + }, sections = { + lualine_a = {'mode'}, lualine_x = {'filetype'}, lualine_y = {} }, - tabline = { - lualine_a = {'buffers'}, - lualine_b = {'branch'}, - lualine_z = {'tabs'} - } + -- tabline = { + -- lualine_z = {'tabs'} + -- } } end, } @@ -205,6 +208,8 @@ return require('packer').startup(function(use) use { 'mattn/calendar-vim', config = function() + vim.g.calendar_monday = 1 + vim.g.calendar_weeknm = 5 vim.api.nvim_create_autocmd("QuitPre", { callback = function() local invalid_win = {} |