mirror of
https://github.com/avinal/dotfiles.git
synced 2026-07-04 07:20:09 +05:30
feat: major update to all configs
- move older config to archive Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
return {
|
||||
'NvChad/nvim-colorizer.lua',
|
||||
config = function()
|
||||
require('colorizer').setup()
|
||||
end,
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
-- You can add your own plugins here or in other files in this directory!
|
||||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {
|
||||
{ 'wakatime/vim-wakatime', lazy = false },
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
-- tailwind-tools.lua
|
||||
return {
|
||||
'luckasRanarison/tailwind-tools.nvim',
|
||||
name = 'tailwind-tools',
|
||||
build = ':UpdateRemotePlugins',
|
||||
dependencies = {
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
'nvim-telescope/telescope.nvim', -- optional
|
||||
'neovim/nvim-lspconfig', -- optional
|
||||
},
|
||||
opts = {}, -- your configuration
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
return {
|
||||
'EdenEast/nightfox.nvim',
|
||||
|
||||
priority = 1000,
|
||||
init = function()
|
||||
vim.opt.background = 'dark'
|
||||
vim.cmd.colorscheme 'carbonfox'
|
||||
end,
|
||||
config = function()
|
||||
require('nightfox').setup {
|
||||
options = {
|
||||
styles = {
|
||||
comments = 'italic',
|
||||
},
|
||||
},
|
||||
-- groups = {
|
||||
-- carbonfox = {
|
||||
-- string = { fg = 'white' },
|
||||
-- },
|
||||
-- },
|
||||
}
|
||||
end,
|
||||
}
|
||||
|
||||
--- vim: ts=2 sts=2 sw=2 et
|
||||
Reference in New Issue
Block a user