mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-12-26 13:21:45 +00:00
Compare commits
4 Commits
ab8ec4096c
...
d0714ea011
Author | SHA1 | Date | |
---|---|---|---|
d0714ea011 | |||
0e848f1dac | |||
2067f93aec | |||
bc49ee4649 |
@ -4,13 +4,16 @@ return {
|
||||
-- change the command in the config to whatever the name of that colorscheme is.
|
||||
--
|
||||
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||
'folke/tokyonight.nvim',
|
||||
'catppuccin/nvim',
|
||||
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||||
init = function()
|
||||
-- Load the colorscheme here.
|
||||
-- Like many other themes, this one has different styles, and you could load
|
||||
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
||||
vim.cmd.colorscheme 'tokyonight-night'
|
||||
vim.cmd.colorscheme 'catppuccin-mocha'
|
||||
|
||||
-- Toggle light/dark mode with mocha/latte
|
||||
vim.keymap.set('n', '<leader>tt', function()
|
||||
vim.cmd.colorscheme(vim.o.background == 'dark' and 'catppuccin-latte' or 'catppuccin-mocha')
|
||||
end, { desc = '[T]oggle [T]heme' })
|
||||
|
||||
-- You can configure highlights by doing something like:
|
||||
vim.cmd.hi 'Comment gui=none'
|
@ -5,9 +5,9 @@ return {
|
||||
opts = {
|
||||
options = {
|
||||
icons_enabled = vim.g.have_nerd_font,
|
||||
theme = 'auto',
|
||||
component_separators = '|',
|
||||
section_separators = ' ',
|
||||
theme = 'catppuccin',
|
||||
section_separators = { left = '', right = '' },
|
||||
component_separators = { left = '', right = '' },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
@ -1,25 +0,0 @@
|
||||
-- Neo-tree is a Neovim plugin to browse the file system
|
||||
-- https://github.com/nvim-neo-tree/neo-tree.nvim
|
||||
|
||||
return {
|
||||
'nvim-neo-tree/neo-tree.nvim',
|
||||
version = '*',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended
|
||||
'MunifTanjim/nui.nvim',
|
||||
},
|
||||
cmd = 'Neotree',
|
||||
keys = {
|
||||
{ '\\', ':Neotree reveal<CR>', { desc = 'NeoTree reveal' } },
|
||||
},
|
||||
opts = {
|
||||
filesystem = {
|
||||
window = {
|
||||
mappings = {
|
||||
['\\'] = 'close_window',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
@ -49,8 +49,6 @@ require('lazy').setup({
|
||||
|
||||
require 'kickstart/plugins/cmp',
|
||||
|
||||
require 'kickstart/plugins/tokyonight',
|
||||
|
||||
require 'kickstart/plugins/todo-comments',
|
||||
|
||||
require 'kickstart/plugins/mini',
|
||||
|
Loading…
Reference in New Issue
Block a user