3 files changed,
5 insertions(+),
4 deletions(-)
jump to
| M | init.lua |
| M | lua/plugin.lua |
| M | lua/plugin/statusline.lua |
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" }, }, }