yeee
This commit is contained in:
parent
33cb54e789
commit
225bb398f1
7 changed files with 498 additions and 468 deletions
|
|
@ -53,7 +53,7 @@ if status is-interactive
|
|||
set -U fish_color_status red
|
||||
set -U fish_color_cancel white --bold
|
||||
set -U fish_pager_color_prefix normal --bold --underline
|
||||
set -U fish_pager_color_progress normal --bold --reverse
|
||||
set -U fish_pager_color_progress normal --reverse
|
||||
set -U fish_pager_color_completion normal
|
||||
set -U fish_pager_color_description yellow --italics
|
||||
set -U fish_pager_color_selected_background --background brblue
|
||||
|
|
@ -66,3 +66,11 @@ if status is-interactive
|
|||
set -U fish_pager_color_selected_prefix black --bold --underline
|
||||
set -U fish_pager_color_secondary_completion
|
||||
end
|
||||
|
||||
if test $XDG_CURRENT_DESKTOP = niri
|
||||
dconf write /org/gnome/desktop/wm/preferences/button-layout "'appmenu'"
|
||||
else
|
||||
dconf reset /org/gnome/desktop/wm/preferences/button-layout
|
||||
end
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ SETUVAR fish_pager_color_background:\x1d
|
|||
SETUVAR fish_pager_color_completion:normal
|
||||
SETUVAR fish_pager_color_description:yellow\x1e\x2d\x2ditalics
|
||||
SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
||||
SETUVAR fish_pager_color_progress:normal\x1e\x2d\x2dbold\x1e\x2d\x2dreverse
|
||||
SETUVAR fish_pager_color_progress:normal\x1e\x2d\x2dreverse
|
||||
SETUVAR fish_pager_color_secondary_background:\x1d
|
||||
SETUVAR fish_pager_color_secondary_completion:\x1d
|
||||
SETUVAR fish_pager_color_secondary_description:\x1d
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -113,19 +113,18 @@ vim.pack.add({ "https://github.com/nvim-treesitter/nvim-treesitter" })
|
|||
require("nvim-treesitter").setup()
|
||||
|
||||
vim.api.nvim_create_autocmd('FileType', {
|
||||
pattern = { "lua", "tex", "c", "java", "ocaml", "fish" },
|
||||
pattern = {'<filetype>', 'tex'},
|
||||
callback = function()
|
||||
-- syntax highlighting, provided by Neovim
|
||||
vim.treesitter.start()
|
||||
end,
|
||||
})
|
||||
|
||||
|
||||
-- See `:h lsp-quickstart` for more details.
|
||||
vim.pack.add({ "https://github.com/mason-org/mason.nvim" })
|
||||
require("mason").setup()
|
||||
|
||||
vim.lsp.enable({ 'lua_ls', 'texlab', 'clangd', 'jdtls', 'ocaml-lsp', 'fish-lsp' })
|
||||
vim.lsp.enable({ 'lua_ls', 'texlab', 'clangd', 'jdtls', 'fish_lsp', 'html', 'cssls', 'lemminx' })
|
||||
|
||||
|
||||
vim.keymap.set('n', '<leader>lf', vim.lsp.buf.format,
|
||||
{ desc = 'Formats a buffer using the attached language server clients' })
|
||||
|
|
@ -282,6 +281,9 @@ clue.setup({
|
|||
|
||||
-- `z` key
|
||||
{ mode = { "n", "x" }, keys = "z" },
|
||||
|
||||
-- `i/a` key
|
||||
{ mode = { "n", "x" }, keys = "i" },
|
||||
},
|
||||
|
||||
clues = {
|
||||
|
|
|
|||
|
|
@ -56,6 +56,10 @@ button:hover {
|
|||
background-color: #9b0000;
|
||||
}
|
||||
|
||||
.mark {
|
||||
background-color: #505050;
|
||||
}
|
||||
|
||||
#mode,
|
||||
#clock,
|
||||
#battery,
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
[preferred]
|
||||
default=gnome;gtk
|
||||
org.freedesktop.impl.portal.Secret=gnome-keyring
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue