fishnvim
This commit is contained in:
parent
b54c76d9a8
commit
43bc3f3ca4
2 changed files with 45 additions and 7 deletions
9
fish/config.fish
Normal file
9
fish/config.fish
Normal 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
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue