diff --git a/init.lua b/init.lua index daddce9..82f6408 100644 --- a/init.lua +++ b/init.lua @@ -15,35 +15,35 @@ require("autocmds") -- ./lua/autocmds.lua require("diagnostics") -- ./lua/diagnostics.lua require('telescope_configuration') -- ./lua/telescope_configuration.lua -if host == "xps13" then - require('tokyonight').setup({ - style = "moon", -- "storm", "moon", "day", "night" - transparent = false, -- Enable transparent background - terminal_colors = true, -- Enable terminal colors - styles = { - comments = { italic = true }, -- Italic comments - keywords = { italic = true }, -- Italic keywords - functions = { bold = true }, -- Bold functions - variables = {}, -- No special style for variables - sidebars = "dark", -- Dark sidebars - floats = "dark", -- Dark floating windows - }, - }) -elseif host == "Titan" then - require('tokyonight').setup({ - style = "storm", -- "storm", "moon", "day", "night" - transparent = false, -- Enable transparent background - terminal_colors = true, -- Enable terminal colors - styles = { - comments = { italic = true }, -- Italic comments - keywords = { italic = true }, -- Italic keywords - functions = { bold = true }, -- Bold functions - variables = {}, -- No special style for variables - sidebars = "dark", -- Dark sidebars - floats = "dark", -- Dark floating windows - }, - }) -end +-- if host == "xps13" then +-- require('tokyonight').setup({ +-- style = "moon", -- "storm", "moon", "day", "night" +-- transparent = false, -- Enable transparent background +-- terminal_colors = true, -- Enable terminal colors +-- styles = { +-- comments = { italic = true }, -- Italic comments +-- keywords = { italic = true }, -- Italic keywords +-- functions = { bold = true }, -- Bold functions +-- variables = {}, -- No special style for variables +-- sidebars = "dark", -- Dark sidebars +-- floats = "dark", -- Dark floating windows +-- }, +-- }) +-- elseif host == "Titan" then +-- require('tokyonight').setup({ +-- style = "storm", -- "storm", "moon", "day", "night" +-- transparent = false, -- Enable transparent background +-- terminal_colors = true, -- Enable terminal colors +-- styles = { +-- comments = { italic = true }, -- Italic comments +-- keywords = { italic = true }, -- Italic keywords +-- functions = { bold = true }, -- Bold functions +-- variables = {}, -- No special style for variables +-- sidebars = "dark", -- Dark sidebars +-- floats = "dark", -- Dark floating windows +-- }, +-- }) +-- end local function is_linux_console() return vim.env.TERM == "linux" @@ -58,7 +58,7 @@ end local function set_colorscheme() if want_truecolor() then vim.o.termguicolors = true - if not pcall(vim.cmd.colorscheme, "tokyonight") then + if not pcall(vim.cmd.colorscheme, "cyberdream") then pcall(vim.cmd.colorscheme, "habamax") end else @@ -105,7 +105,7 @@ vim.api.nvim_create_autocmd("VimEnter", { else lualine.setup({ options = { - theme = "tokyonight", + theme = "auto", icons_enabled = true, globalstatus = true, }, diff --git a/lua/plugins.lua b/lua/plugins.lua index 966195f..a8572c1 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -2,7 +2,8 @@ local vim = vim local host = vim.loop.os_gethostname() vim.pack.add({ - { src = "https://github.com/folke/tokyonight.nvim" }, + -- { src = "https://github.com/folke/tokyonight.nvim" }, + { src = "https://github.com/scottmckendry/cyberdream.nvim" }, { src = "https://github.com/nvim-tree/nvim-web-devicons" }, { src = "https://github.com/ibhagwan/fzf-lua" }, { src = "https://github.com/echasnovski/mini.pick" }, @@ -74,7 +75,7 @@ require('mini.surround').setup({}) require('mini.indentscope').setup({}) require('mini.tabline').setup({}) require('mini.fuzzy').setup({}) -require('lualine').setup({ options = { theme = 'tokyonight' } }) +-- require('lualine').setup({ options = { theme = 'tokyonight' } }) require('which-key').setup({}) require('fzf-lua').setup({}) require('crates').setup({})