This commit is contained in:
Never Gude 2026-02-09 21:47:15 +01:00
parent 2ca164e1f8
commit 022744c075
4 changed files with 24 additions and 42 deletions

View file

@ -1,30 +0,0 @@
# Colors (Gruvbox dark)
# Default colors
[colors.primary]
# hard contrast background = = '#1d2021'
background = '#282828'
# soft contrast background = = '#32302f'
foreground = '#ebdbb2'
# Normal colors
[colors.normal]
black = '#282828'
red = '#cc241d'
green = '#98971a'
yellow = '#d79921'
blue = '#458588'
magenta = '#b16286'
cyan = '#689d6a'
white = '#a89984'
# Bright colors
[colors.bright]
black = '#928374'
red = '#fb4934'
green = '#b8bb26'
yellow = '#fabd2f'
blue = '#83a598'
magenta = '#d3869b'
cyan = '#8ec07c'
white = '#ebdbb2'

3
.config/git/config Normal file
View file

@ -0,0 +1,3 @@
[user]
email = n.gude@posteo.de
name = Never Gude

View file

@ -137,7 +137,10 @@ vim.filetype.add({
-- Install nvim-treesitter -- Install nvim-treesitter
vim.pack.add({ "https://github.com/nvim-treesitter/nvim-treesitter" }) vim.pack.add({ "https://github.com/nvim-treesitter/nvim-treesitter" })
require("nvim-treesitter").install('lua', 'latex', 'c', 'java', 'ocaml') require("nvim-treesitter").setup({
ensure_installed = { "lua", "latex", "c", "java", "ocaml" },
highlight = { enable = true }
})
-- See `:h lsp-quickstart` for more details. -- See `:h lsp-quickstart` for more details.
vim.pack.add({ "https://github.com/mason-org/mason.nvim" }) vim.pack.add({ "https://github.com/mason-org/mason.nvim" })
@ -239,7 +242,6 @@ vim.api.nvim_create_user_command("DapInit", function()
dap.configurations.cpp = dap.configurations.c dap.configurations.cpp = dap.configurations.c
dap.configurations.rust = dap.configurations.c dap.configurations.rust = dap.configurations.c
end, { desc = "Initialize Debug Adater Protocol support" }) end, { desc = "Initialize Debug Adater Protocol support" })
-- [[ UI Configuration ]] -- [[ UI Configuration ]]

View file

@ -1,7 +1,14 @@
#!/usr/bin/env fish #!/usr/bin/env fish
set default "https://marginalia-search.com/search?query=" set default "https://marginalia-search.com/search?query="
set ddg "https://duckduckgo.com/?q="
set input (prompt) set input (prompt)
set split_input (string split -m 1 ":" $input)
switch $split_input[1]
case "d"
xdg-open "$ddg$split_input[2]"
case "*"
xdg-open "$default$input" xdg-open "$default$input"
end