Add alpha-nvim

This commit is contained in:
rajvatsal 2023-12-23 11:33:11 +05:30
parent da8a1bfb10
commit b3a140a106
5 changed files with 15 additions and 10 deletions

View File

@ -4,15 +4,13 @@ vim.opt.expandtab = true
vim.bo.softtabstop = 2
vim.opt.relativenumber = true
vim.keymap.set('t', '<Esc>', [[<C-\><C-n>]], { 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 = {

View File

@ -205,8 +205,8 @@ require('lazy').setup({
opts = {
options = {
icons_enabled = true,
--theme = 'onedark',
component_separators = '|',
-- theme = 'auto',
component_separators = '/',
section_separators = '',
},
},

View File

@ -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" },

View File

@ -0,0 +1,6 @@
return {
'goolord/alpha-nvim',
config = function()
require 'alpha'.setup(require 'alpha.themes.dashboard'.config)
end
}

View File

@ -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, }