change theme
This commit is contained in:
parent
2f01e7ed9c
commit
400134dd20
45
init.lua
45
init.lua
@ -144,6 +144,8 @@ require('lazy').setup({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{ 'norcalli/nvim-colorizer.lua' },
|
||||||
|
|
||||||
-- {
|
-- {
|
||||||
-- -- Theme inspired by Atom
|
-- -- Theme inspired by Atom
|
||||||
-- -- 'ellisonleao/gruvbox.nvim',
|
-- -- 'ellisonleao/gruvbox.nvim',
|
||||||
@ -158,13 +160,13 @@ require('lazy').setup({
|
|||||||
-- transparent = true
|
-- transparent = true
|
||||||
-- }
|
-- }
|
||||||
-- },
|
-- },
|
||||||
{
|
-- {
|
||||||
"folke/tokyonight.nvim",
|
-- "folke/tokyonight.nvim",
|
||||||
lazy = false,
|
-- lazy = false,
|
||||||
priority = 1000,
|
-- priority = 1000,
|
||||||
opts = {
|
-- opts = {
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
|
|
||||||
{
|
{
|
||||||
-- Set lualine as statusline
|
-- Set lualine as statusline
|
||||||
@ -249,12 +251,23 @@ require('lazy').setup({
|
|||||||
-- See `:help vim.o`
|
-- See `:help vim.o`
|
||||||
-- NOTE: You can change these options as you wish!
|
-- NOTE: You can change these options as you wish!
|
||||||
|
|
||||||
require("tokyonight").setup({
|
-- require("tokyonight").setup({
|
||||||
style = "night", -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day`
|
-- style = "night", -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day`
|
||||||
transparent = false, -- Enable this to disable setting the background color
|
-- transparent = false, -- Enable this to disable setting the background color
|
||||||
})
|
-- })
|
||||||
|
|
||||||
vim.cmd[[colorscheme tokyonight]]
|
-- require("colorizer").setup()
|
||||||
|
|
||||||
|
vim.o.termguicolors = true
|
||||||
|
require 'colorizer'.setup {
|
||||||
|
'css';
|
||||||
|
'javascript';
|
||||||
|
html = {
|
||||||
|
mode = 'foreground';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
-- vim.cmd[[colorscheme tokyonight]]
|
||||||
|
|
||||||
|
|
||||||
-- Set highlight on search
|
-- Set highlight on search
|
||||||
@ -325,10 +338,10 @@ vim.api.nvim_set_keymap('n', '<leader>yy', '"+yy', { noremap = true, silent = tr
|
|||||||
vim.api.nvim_set_keymap('v', '<leader>y', '"+y', { noremap = true, silent = true })
|
vim.api.nvim_set_keymap('v', '<leader>y', '"+y', { noremap = true, silent = true })
|
||||||
|
|
||||||
-- Paste from clipboard
|
-- Paste from clipboard
|
||||||
vim.api.nvim_set_keymap('n', '<leader>p', '"+p', { noremap = true, silent = true })
|
vim.api.nvim_set_keymap('n', '<leader>v', '"+p', { noremap = true, silent = true })
|
||||||
vim.api.nvim_set_keymap('n', '<leader>P', '"+P', { noremap = true, silent = true })
|
vim.api.nvim_set_keymap('n', '<leader>V', '"+P', { noremap = true, silent = true })
|
||||||
vim.api.nvim_set_keymap('v', '<leader>p', '"+p', { noremap = true, silent = true })
|
vim.api.nvim_set_keymap('v', '<leader>v', '"+p', { noremap = true, silent = true })
|
||||||
vim.api.nvim_set_keymap('v', '<leader>P', '"+P', { noremap = true, silent = true })
|
vim.api.nvim_set_keymap('v', '<leader>v', '"+P', { noremap = true, silent = true })
|
||||||
|
|
||||||
-- [[ Highlight on yank ]]
|
-- [[ Highlight on yank ]]
|
||||||
-- See `:help vim.highlight.on_yank()`
|
-- See `:help vim.highlight.on_yank()`
|
||||||
|
Loading…
Reference in New Issue
Block a user