feat: clear

This commit is contained in:
tsorabel 2024-04-06 23:29:22 +02:00
parent c0a946044e
commit b7a6606f8b
3 changed files with 14 additions and 14 deletions

View File

@ -815,11 +815,14 @@ require('lazy').setup({
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
'folke/tokyonight.nvim', 'folke/tokyonight.nvim',
priority = 1000, -- Make sure to load this before all the other start plugins. priority = 1000, -- Make sure to load this before all the other start plugins.
lazy = false,
init = function() init = function()
-- Load the colorscheme here. -- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load -- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night' vim.cmd.colorscheme 'tokyonight-night'
vim.o.background = 'dark'
-- vim.cmd[[colorscheme tokyonight]]
-- You can configure highlights by doing something like: -- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none' vim.cmd.hi 'Comment gui=none'

View File

@ -11,6 +11,16 @@ return {
enable = true, enable = true,
}, },
center = { center = {
{
icon = '󰊳 ',
icon_hl = 'group',
desc = 'Telescope find files',
desc_hl = 'group',
key = 'f',
key_hl = 'group',
key_format = ' [%s]', -- `%s` will be substituted with value of `key`
action = ':Telescope find_files',
},
{ {
icon = '󰊳 ', icon = '󰊳 ',
icon_hl = 'group', icon_hl = 'group',
@ -23,16 +33,6 @@ return {
harpoon.ui:toggle_quick_menu(harpoon:list()) harpoon.ui:toggle_quick_menu(harpoon:list())
end, end,
}, },
{
icon = '󰊳 ',
icon_hl = 'group',
desc = 'Telescope find files',
desc_hl = 'group',
key = 'f',
key_hl = 'group',
key_format = ' [%s]', -- `%s` will be substituted with value of `key`
action = ':Telescope find_files',
},
{ {
icon = '󰊳 ', icon = '󰊳 ',
icon_hl = 'group', icon_hl = 'group',

View File

@ -14,6 +14,7 @@ return {
vim.keymap.set({ 'n' }, '<leader>tt', '<cmd>Tagbar<CR>', { desc = '[T]oggle [T]agbar' }) vim.keymap.set({ 'n' }, '<leader>tt', '<cmd>Tagbar<CR>', { desc = '[T]oggle [T]agbar' })
end, end,
}, },
{ {
'windwp/nvim-ts-autotag', 'windwp/nvim-ts-autotag',
ft = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact', 'html', 'markdown' }, ft = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact', 'html', 'markdown' },
@ -21,8 +22,4 @@ return {
require('nvim-ts-autotag').setup() require('nvim-ts-autotag').setup()
end, end,
}, },
--Terminal
--
-- { 'akinsho/toggleterm.nvim', version = '*', config = true },
} }