multiple updates

updated neovim colour scheme
updated password database
updated prod homelab
This commit is contained in:
2023-02-28 21:47:10 +09:30
parent be6a92f9b6
commit dea8cdf6ab
5 changed files with 14 additions and 3 deletions
+10
View File
@@ -148,10 +148,20 @@ require('nvim-autopairs').setup{} -- Add this line
-- lualine
require('lualine').setup {
options = {
-- theme = 'dracula-nvim',
theme = 'onedark',
icons_enabled = true,
}
}
-- require("dracula").setup{
-- }
-- onedark
require('onedark').setup {
colors = {
blue = "#247ba3"
},
style = 'darker'
}
require('onedark').load()
+1
View File
@@ -58,5 +58,6 @@ return require('packer').startup(function(use)
opt = true}
}
use { 'navarasu/onedark.nvim' }
use { 'Mofiqul/dracula.nvim' }
end)
+1 -1
View File
@@ -2,7 +2,7 @@
local g = vim.g
g.t_co = 256
g.background = "dark"
g.background = "light"
-- Update the packpath
local packer_path = vim.fn.stdpath('config') .. '/site'