all repos

init.lua @ 9669ea6d1ad8c4ec84270c86acaa62b0ca2480f6

my nvim config
3 files changed, 3 insertions(+), 3 deletions(-)
update color theme
Author: neoteny ss2316544@gmail.com
Committed at: 2022-01-09 21:48:13 +0200
Parent: 6101e71
M init.lua

@@ -5,4 +5,4 @@ require "disabled"

require "globals" require "autocmd" -vim.cmd [[colo catppuccin]] +vim.cmd [[colo onenord]]
M lua/plugin.lua

@@ -4,8 +4,8 @@ return require("packer").startup(function(use)

use "wbthomason/packer.nvim" use "nvim-lua/plenary.nvim" use "kyazdani42/nvim-web-devicons" - use { "catppuccin/nvim", as = "catppuccin" } use { "~/code/gopher.nvim", ft = "go" } + use "rmehri01/onenord.nvim" use { "dstein64/vim-startuptime", cmd = "StartupTime" } use { "tpope/vim-surround", keys = { "c", "d", "y" } } use { "ahmedkhalf/project.nvim", config = get_config "plugin.project" }
M lua/plugin/statusline.lua

@@ -3,7 +3,7 @@

function M.setup() require("lualine").setup { options = { - theme = "catppuccin", + theme = "onenord", component_separators = { "", "" }, section_separators = { "", "" }, disabled_filetypes = { "NvimTree", "Telescope" },