diff --git a/after/plugin/defaults.lua b/after/plugin/defaults.lua index 7d383964..f2a915dd 100644 --- a/after/plugin/defaults.lua +++ b/after/plugin/defaults.lua @@ -4,15 +4,13 @@ vim.opt.expandtab = true vim.bo.softtabstop = 2 vim.opt.relativenumber = true vim.keymap.set('t', '', [[]], { noremap = true }) +vim.cmd.colorscheme 'gruvbox' -- Set custom colorscheme [[ NOTE: Never set it to "onedark" cuz it breaks the editor ]] --- Set custom colorscheme [[ NOTE: Never set it to "onedark" cuz it breaks the editor ]] -vim.cmd.colorscheme 'catppuccin' - --- custom lualine +-- Lualine config require('lualine').setup { options = { icons_enabled = true, - theme = 'auto', + -- theme = 'auto', component_separators = { left = '', right = '' }, section_separators = { left = '', right = '' }, disabled_filetypes = { diff --git a/init.lua b/init.lua index 9487fca2..806329f4 100644 --- a/init.lua +++ b/init.lua @@ -205,8 +205,8 @@ require('lazy').setup({ opts = { options = { icons_enabled = true, - --theme = 'onedark', - component_separators = '|', + -- theme = 'auto', + component_separators = '/', section_separators = '', }, }, diff --git a/lazy-lock.json b/lazy-lock.json index 6c980812..d7c0a591 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -1,7 +1,7 @@ { "Comment.nvim": { "branch": "master", "commit": "0236521ea582747b58869cb72f70ccfa967d2e89" }, "LuaSnip": { "branch": "master", "commit": "954c81b53989097faaff0fabc11c29575288c3e1" }, - "catppuccin": { "branch": "main", "commit": "64dc309bc157779691be38bbfc5123584e0a4a85" }, + "alpha-nvim": { "branch": "main", "commit": "29074eeb869a6cbac9ce1fbbd04f5f5940311b32" }, "cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" }, "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" }, "cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" }, @@ -18,6 +18,7 @@ "mason-nvim-dap.nvim": { "branch": "main", "commit": "5b4db7c0d6873436b42bcda0ba7cd4efa9206745" }, "mason.nvim": { "branch": "main", "commit": "41e75af1f578e55ba050c863587cffde3556ffa6" }, "neodev.nvim": { "branch": "main", "commit": "c4ce017bd4bacf60bf59330cec9e93c5d5e104a6" }, + "nvim": { "branch": "main", "commit": "4fbab1f01488718c3d54034a473d0346346b90e3" }, "nvim-cmp": { "branch": "main", "commit": "41d7633e4146dce1072de32cea31ee31b056a131" }, "nvim-dap": { "branch": "master", "commit": "bbe2c6f3438542a37cc2141a8e385f7dfe07d87d" }, "nvim-dap-go": { "branch": "main", "commit": "a5cc8dcad43f0732585d4793deb02a25c4afb766" }, diff --git a/lua/custom/plugins/alpha.lua b/lua/custom/plugins/alpha.lua new file mode 100644 index 00000000..93ec01ad --- /dev/null +++ b/lua/custom/plugins/alpha.lua @@ -0,0 +1,6 @@ +return { + 'goolord/alpha-nvim', + config = function() + require 'alpha'.setup(require 'alpha.themes.dashboard'.config) + end +} diff --git a/lua/custom/plugins/colorschemes.lua b/lua/custom/plugins/colorschemes.lua index 984fa3f5..1365cce2 100644 --- a/lua/custom/plugins/colorschemes.lua +++ b/lua/custom/plugins/colorschemes.lua @@ -1,6 +1,6 @@ return { --Gruvbox colorscheme - { "ellisonleao/gruvbox.nvim", priority = 1000, config = true, opts = ... }, + { "ellisonleao/gruvbox.nvim", priority = 1000, config = true, opts = ... }, --tokyonight colorscheme { @@ -13,7 +13,7 @@ return { { "rebelot/kanagawa.nvim", priority = 1000 }, -- latte, frappe, macchiato, mocha - { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, + { "catppuccin/nvim", priority = 1000, }, -- Theme inspired by Atom { 'navarasu/onedark.nvim', priority = 1000, }