all repos

init.lua @ aef7f02e995d5b5b8281a0b7aa9ea3aec7b29271

my nvim config
3 files changed, 5 insertions(+), 4 deletions(-)
change theme
Author: neoteny ss2316544@gmail.com
Committed at: 2021-12-10 20:06:21 +0200
Parent: 2602baf
M init.lua

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

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

@@ -1,7 +1,7 @@

return require("packer").startup(function(use) use "wbthomason/packer.nvim" use "nvim-lua/plenary.nvim" - use "shaunsingh/nord.nvim" + use "catppuccin/nvim" use "kyazdani42/nvim-web-devicons" use "romgrk/barbar.nvim"
M lua/plugin/statusline.lua

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

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

@@ -13,7 +13,8 @@ lualine_a = { "branch", "diff" },

lualine_b = { "filename" }, lualine_c = {}, lualine_x = {}, - lualine_y = { { "diagnostics", sources = { "nvim_lsp" } } }, + lualine_y = { { "diagnostics", sources = { "nvim_diagnostic" } } }, + lualine_z = { "location" }, }, }