From 43bc3f3ca43f9004f67fb1967826bbbaa5255fb8 Mon Sep 17 00:00:00 2001 From: Ale Date: Wed, 15 Nov 2023 00:30:45 +0100 Subject: [PATCH] fishnvim --- fish/config.fish | 9 +++++++++ nvim/init.lua | 43 ++++++++++++++++++++++++++++++++++++------- 2 files changed, 45 insertions(+), 7 deletions(-) create mode 100644 fish/config.fish diff --git a/fish/config.fish b/fish/config.fish new file mode 100644 index 0000000..3befb76 --- /dev/null +++ b/fish/config.fish @@ -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 diff --git a/nvim/init.lua b/nvim/init.lua index 484b8ed..819eed8 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -13,13 +13,41 @@ vim.opt.rtp:prepend(lazypath) plugins = { { - 'maxmx03/dracula.nvim', - lazy = false, - config = function () - local dracula = require 'dracula' - dracula.setup() - vim.cmd.colorscheme 'dracula' - end + 'maxmx03/dracula.nvim', + lazy = false, + config = function () + local dracula = require 'dracula' + dracula.setup() + vim.cmd.colorscheme 'dracula' + 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", @@ -41,3 +69,4 @@ require("lazy").setup(plugins) vim.opt.smarttab = true vim.opt.expandtab = true vim.opt.shiftwidth = 2 +vim.opt.guifont = "victor mono:h12"