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
+17
View File
@@ -0,0 +1,17 @@
# The current version of the config schema
version: 1
# What protocol to use when performing git operations. Supported values: ssh, https
git_protocol: ssh
# What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment.
editor: nvim
# When to interactively prompt. This is a global config that cannot be overridden by hostname. Supported values: enabled, disabled
prompt: enabled
# A pager program to send command output to, e.g. "less". Set the value to "cat" to disable the pager.
pager: less
# Aliases allow you to create nicknames for gh commands
aliases:
co: pr checkout
# The path to a unix socket through which send HTTP connections. If blank, HTTP traffic will be handled by net/http.DefaultTransport.
http_unix_socket:
# What web browser gh should use when opening URLs. If blank, will refer to environment.
browser:
+5
View File
@@ -0,0 +1,5 @@
github.com:
git_protocol: ssh
users:
avinal:
user: avinal
@@ -1 +0,0 @@
return {}
@@ -21,3 +21,4 @@ return {
}
end,
}
--- vim: ts=2 sts=2 sw=2 et
@@ -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
+2 -2
View File
@@ -242,7 +242,7 @@ serialize_pane_viewport true
//
themes {
carbonfox {
bg "#161616"
bg "#2a2a2a"
fg "#f2f4f8"
red "#ee5396"
green "#25be6a"
@@ -262,7 +262,7 @@ themes {
theme "carbonfox"
// The name of the default layout to load on startup
// Default: "default"
Default: "compact"
//
default_layout "compact"