4 files changed,
5 insertions(+),
4 deletions(-)
jump to
| M | init.lua |
| M | lua/fk/plugin.lua |
| M | lua/fk/plugin/statusline.lua |
| A | lua/fk/theme.lua |
M
init.lua
@@ -5,5 +5,4 @@ require "fk.keymapings"
require "fk.disabled" require "fk.globals" require "fk.autocmd" - -vim.cmd [[colo onenord]] +require "fk.theme"
M
lua/fk/plugin.lua
@@ -10,7 +10,7 @@ return require("packer").startup(function(use)
use "wbthomason/packer.nvim" use "nvim-lua/plenary.nvim" use "kyazdani42/nvim-web-devicons" - use "rmehri01/onenord.nvim" -- theme + use "folke/tokyonight.nvim" -- theme use "gpanders/editorconfig.nvim" use "lewis6991/impatient.nvim" -- fast loading
M
lua/fk/plugin/statusline.lua
@@ -1,6 +1,6 @@
require("lualine").setup { options = { - theme = "onenord", + theme = "tokyonight", component_separators = { "", "" }, section_separators = { "", "" }, disabled_filetypes = { "NvimTree", "Telescope" },