fix zellij highlight issue and other things

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2024-06-25 17:10:35 +05:30
parent 5b32b3e5d7
commit 567d248572
9 changed files with 30 additions and 24 deletions
@@ -7,6 +7,7 @@ return {
local lint = require 'lint'
lint.linters_by_ft = {
markdown = { 'markdownlint' },
yaml = { 'yamllint' },
}
-- To allow other plugins to add linters to require('lint').linters_by_ft,
@@ -164,7 +164,7 @@ return {
dockerls = {},
marksman = {},
-- pyright = {},
-- rust_analyzer = {},
rust_analyzer = {},
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
--
-- Some languages (like typescript) have entire language plugins that can be useful:
@@ -34,6 +34,9 @@ return {
-- ... and there is more!
-- Check out: https://github.com/echasnovski/mini.nvim
-- Enable tabline
-- require('mini.tabline').setup()
end,
},
}
@@ -1,20 +0,0 @@
return {
{ -- You can easily change to a different colorscheme.
-- Change the name of the colorscheme plugin below, and then
-- 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',
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'
-- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none'
end,
},
}
-- vim: ts=2 sts=2 sw=2 et