Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusandre committed Apr 30, 2024
1 parent e43358a commit 0400cba
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions nvim/lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"freeze.nvim": { "branch": "main", "commit": "8512cebb305e50f4acca6e71bc3061149a5c61eb" },
"friendly-snippets": { "branch": "main", "commit": "ea068f1becd91bcd4591fceb6420d4335e2e14d3" },
"gitsigns.nvim": { "branch": "main", "commit": "035da036e68e509ed158414416c827d022d914bd" },
"hardtime.nvim": { "branch": "main", "commit": "eaf4bc31b86419c26ad7b3a142dd36ca545ca2e4" },
"indent-blankline.nvim": { "branch": "master", "commit": "3d08501caef2329aba5121b753e903904088f7e6" },
"lazy.nvim": { "branch": "main", "commit": "3f13f080434ac942b150679223d54f5ca91e0d52" },
"lspkind.nvim": { "branch": "master", "commit": "1735dd5a5054c1fb7feaf8e8658dbab925f4f0cf" },
Expand Down
4 changes: 2 additions & 2 deletions nvim/lua/plugins/colors.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ return {
'EdenEast/nightfox.nvim',
lazy = false,
priority = 1000,
-- config = function() vim.cmd([[colorscheme nightfox]]) end,
-- config = function() vim.cmd([[colorscheme carbonfox]]) end,
},
{
'folke/tokyonight.nvim',
lazy = false,
priority = 1000,
config = function() vim.cmd([[colorscheme tokyonight-moon]]) end,
config = function() vim.cmd([[colorscheme tokyonight-night]]) end,
},
{
'olivercederborg/poimandres.nvim',
Expand Down
4 changes: 4 additions & 0 deletions nvim/lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ return {
'jghauser/mkdir.nvim',
event = 'BufWritePre',
},
{
'm4xshen/hardtime.nvim',
config = true,
},
{
'ethanholz/freeze.nvim',
keys = {
Expand Down
6 changes: 3 additions & 3 deletions wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ config.set_environment_variables = {
}

-- Colors
-- config.color_scheme = 'nightfox'
config.color_scheme = 'tokyonight_moon'
-- config.color_scheme = 'carbonfox'
config.color_scheme = 'tokyonight'
-- config.color_scheme = 'Poimandres'
-- config.color_scheme = 'Molokai (Gogh)'

-- UI
config.enable_scroll_bar = false
config.tab_bar_at_bottom = true
config.use_fancy_tab_bar = false
config.force_reverse_video_cursor = true
-- config.force_reverse_video_cursor = true

config.window_padding = {
left = 0,
Expand Down

0 comments on commit 0400cba

Please sign in to comment.