This commit is contained in:
Ale 2023-11-15 00:30:45 +01:00
parent b54c76d9a8
commit 43bc3f3ca4
2 changed files with 45 additions and 7 deletions

9
fish/config.fish Normal file
View file

@ -0,0 +1,9 @@
function fish_greeting
end
if status is-interactive
starship init fish | source
end
# Created by `pipx` on 2023-11-04 13:29:11
set PATH $PATH /home/ale/.local/bin

View file

@ -21,6 +21,34 @@ plugins = {
vim.cmd.colorscheme 'dracula' vim.cmd.colorscheme 'dracula'
end end
}, },
{
'nvimdev/dashboard-nvim',
event = 'VimEnter',
config = function ()
require('dashboard').setup{
theme = "hyper"
}
end,
dependencies = {{'nvim-tree/nvim-web-devicons'}}
},
{
'romgrk/barbar.nvim',
init = function()
vim.g.barbar_autosetup = false
require('barbar').setup {
auto_hide = 1
}
end,
dependencies = {
'lewis6991/gitsigns.nvim',
'nvim-tree/nvim-web-devicons',
},
},
{
'NTBBloodbath/galaxyline.nvim',
config = function() require('galaxyline.themes.eviline') end,
dependencies = {{'nvim-tree/nvim-web-devicons'}},
},
{ {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
build = ":TSUpdate", build = ":TSUpdate",
@ -41,3 +69,4 @@ require("lazy").setup(plugins)
vim.opt.smarttab = true vim.opt.smarttab = true
vim.opt.expandtab = true vim.opt.expandtab = true
vim.opt.shiftwidth = 2 vim.opt.shiftwidth = 2
vim.opt.guifont = "victor mono:h12"