blanked greeting in fish config, added gruvbox theme to nvim and switched to using it
This commit is contained in:
parent
30b328c2d9
commit
b66d940330
4 changed files with 9 additions and 5 deletions
|
@ -3,10 +3,10 @@ if status is-interactive
|
||||||
end
|
end
|
||||||
|
|
||||||
# set greeting to text
|
# set greeting to text
|
||||||
set -g fish_greeting 'Hey, sup?'
|
set -g fish_greeting ''
|
||||||
# function fish_greeting
|
#function fish_greeting
|
||||||
# cowfortune
|
# cowfortune
|
||||||
# end
|
#end
|
||||||
|
|
||||||
# start starship prompt
|
# start starship prompt
|
||||||
starship init fish | source
|
starship init fish | source
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
require("user.options")
|
require("user.options")
|
||||||
require("user.keymaps")
|
require("user.keymaps")
|
||||||
require("user.plugins")
|
require("user.plugins")
|
||||||
vim.cmd[[colorscheme Spacedust]]
|
--vim.cmd[[colorscheme Spacedust]]
|
||||||
|
vim.cmd([[colorscheme gruvbox]])
|
||||||
|
|
|
@ -13,3 +13,4 @@ vim.opt.cursorlineopt = "screenline" -- hightlight line only
|
||||||
vim.opt.termguicolors = true -- enables 24-bit color
|
vim.opt.termguicolors = true -- enables 24-bit color
|
||||||
vim.opt.splitbelow = true -- new horizontal splits go below
|
vim.opt.splitbelow = true -- new horizontal splits go below
|
||||||
vim.opt.splitright = true -- new vertical splits go right
|
vim.opt.splitright = true -- new vertical splits go right
|
||||||
|
vim.opt.background = "dark"
|
||||||
|
|
|
@ -30,6 +30,8 @@ return require('packer').startup(function(use)
|
||||||
-- Themes
|
-- Themes
|
||||||
use 'folke/tokyonight.nvim'
|
use 'folke/tokyonight.nvim'
|
||||||
|
|
||||||
|
use { "ellisonleao/gruvbox.nvim" }
|
||||||
|
|
||||||
use 'numToStr/Comment.nvim'
|
use 'numToStr/Comment.nvim'
|
||||||
|
|
||||||
use 'mfussenegger/nvim-dap'
|
use 'mfussenegger/nvim-dap'
|
||||||
|
|
Loading…
Reference in a new issue