Skip to content

Commit 9018835

Browse files
committed
colorscheme changes
1 parent e76a75c commit 9018835

File tree

1 file changed

+31
-20
lines changed

1 file changed

+31
-20
lines changed

init.lua

Lines changed: 31 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ require('lazy').setup({
387387
-- You can put your default mappings / updates / etc. in here
388388
-- All the info you're looking for is in `:help telescope.setup()`
389389
--
390-
-- defaults = {
390+
-- defaults = {
391391
-- mappings = {
392392
-- i = { ['<c-enter>'] = 'to_fuzzy_refine' },
393393
-- },
@@ -397,8 +397,8 @@ require('lazy').setup({
397397
['ui-select'] = {
398398
require('telescope.themes').get_dropdown(),
399399
},
400-
},
401-
}
400+
},
401+
}
402402

403403
-- Enable Telescope extensions if they are installed
404404
pcall(require('telescope').load_extension, 'fzf')
@@ -842,30 +842,40 @@ require('lazy').setup({
842842
end,
843843
},
844844

845-
{ -- You can easily change to a different colorscheme.
846-
-- Change the name of the colorscheme plugin below, and then
847-
-- change the command in the config to whatever the name of that colorscheme is.
848-
--
849-
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
850-
'folke/tokyonight.nvim',
851-
priority = 1000, -- Make sure to load this before all the other start plugins.
852-
init = function()
853-
-- Load the colorscheme here.
854-
-- Like many other themes, this one has different styles, and you could load
855-
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
856-
vim.cmd.colorscheme 'tokyonight-night'
845+
-- { -- You can easily change to a different colorscheme.
846+
-- -- Change the name of the colorscheme plugin below, and then
847+
-- -- change the command in the config to whatever the name of that colorscheme is.
848+
-- --
849+
-- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
850+
-- 'folke/tokyonight.nvim',
851+
-- priority = 1000, -- Make sure to load this before all the other start plugins.
852+
-- init = function()
853+
-- -- Load the colorscheme here.
854+
-- -- Like many other themes, this one has different styles, and you could load
855+
-- -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
856+
-- vim.cmd.colorscheme 'tokyonight-night'
857+
858+
-- -- You can configure highlights by doing something like:
859+
-- vim.cmd.hi 'Comment gui=none'
860+
-- end,
861+
-- },
862+
--
863+
{
857864

858-
-- You can configure highlights by doing something like:
865+
'rebelot/kanagawa.nvim',
866+
priority = 1000,
867+
init = function()
868+
vim.cmd.colorscheme 'kanagawa-dragon'
859869
vim.cmd.hi 'Comment gui=none'
860870
end,
861-
},
862-
871+
},
872+
863873
-- Highlight todo, notes, etc in comments
864874
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
865875

866876
{ -- Collection of various small independent plugins/modules
867877
'echasnovski/mini.nvim',
868-
config = function()
878+
config = function()
869879
-- Better Around/Inside textobjects
870880
--
871881
-- Examples:
@@ -939,7 +949,8 @@ require('lazy').setup({
939949
require 'kickstart.plugins.indent_line',
940950
require 'kickstart.plugins.lint',
941951
require 'kickstart.plugins.autopairs',
942-
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
952+
-- require 'kickstart.plugins.neo-tree', -- shows context of current line
953+
require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps
943954

944955
-- NOTE: The import below cantomatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
945956
-- This is the easiest way to modularize your config.

0 commit comments

Comments
 (0)