blanked greeting in fish config, added gruvbox theme to nvim and switched to using it

This commit is contained in:
Mike G 2024-05-04 22:35:58 -04:00
parent 30b328c2d9
commit b66d940330
4 changed files with 9 additions and 5 deletions

View file

@ -3,10 +3,10 @@ if status is-interactive
end
# set greeting to text
set -g fish_greeting 'Hey, sup?'
# function fish_greeting
set -g fish_greeting ''
#function fish_greeting
# cowfortune
# end
#end
# start starship prompt
starship init fish | source

View file

@ -1,4 +1,5 @@
require("user.options")
require("user.keymaps")
require("user.plugins")
vim.cmd[[colorscheme Spacedust]]
--vim.cmd[[colorscheme Spacedust]]
vim.cmd([[colorscheme gruvbox]])

View file

@ -13,3 +13,4 @@ vim.opt.cursorlineopt = "screenline" -- hightlight line only
vim.opt.termguicolors = true -- enables 24-bit color
vim.opt.splitbelow = true -- new horizontal splits go below
vim.opt.splitright = true -- new vertical splits go right
vim.opt.background = "dark"

View file

@ -30,6 +30,8 @@ return require('packer').startup(function(use)
-- Themes
use 'folke/tokyonight.nvim'
use { "ellisonleao/gruvbox.nvim" }
use 'numToStr/Comment.nvim'
use 'mfussenegger/nvim-dap'