3 files changed,
4 insertions(+),
4 deletions(-)
Author:
Smirnov Olexander
ss2316544@gmail.com
Committed at:
2022-05-01 22:24:12 +0300
Parent:
5ff381d
jump to
| M | lua/configs/statusline.lua |
| M | lua/core/options.lua |
| M | lua/plugins.lua |
M
lua/configs/statusline.lua
@@ -1,6 +1,6 @@
require("lualine").setup { options = { - theme = "onenord", + theme = "kanagawa", globalstatus = true, component_separators = { left = "", right = "" }, section_separators = { left = "", right = "" },
M
lua/core/options.lua
@@ -1,6 +1,6 @@
local o, g = vim.opt, vim.g -vim.cmd [[colo onenord]] +vim.cmd [[colo kanagawa]] -- use filetype.lua instead of filetype.vim g.did_load_filetypes = 1
M
lua/plugins.lua
@@ -15,7 +15,7 @@ use "wbthomason/packer.nvim"
use "nvim-lua/plenary.nvim" use "lewis6991/impatient.nvim" use "nathom/filetype.nvim" - use "rmehri01/onenord.nvim" -- theme + use "rebelot/kanagawa.nvim" -- theme use { "tpope/vim-surround", keys = { "c", "d", "y" } } use { "kyazdani42/nvim-web-devicons", module = "nvim-web-devicons" }@@ -61,7 +61,7 @@ }
use { "nvim-lualine/lualine.nvim", - after = "onenord.nvim", + after = "kanagawa.nvim", config = u.get_config "configs.statusline", }