This commit is contained in:
Jaroslaw Konik 2026-04-09 17:02:20 +02:00
parent e1b9dcd813
commit 7cf0a39802
2 changed files with 45 additions and 1 deletions

40
alacritty.toml Normal file
View file

@ -0,0 +1,40 @@
[terminal]
shell = { program = "tmux" }
[font]
normal = { family = "FiraCode Nerd Font" }
size = 13.0
[selection]
save_to_clipboard = false
[colors.primary]
background = "#282828"
foreground = "#ebdbb2"
[colors.normal]
black = "#282828"
red = "#cc241d"
green = "#98971a"
yellow = "#d79921"
blue = "#458588"
magenta = "#b16286"
cyan = "#689d6a"
white = "#a89984"
[colors.bright]
black = "#928374"
red = "#fb4934"
green = "#b8bb26"
yellow = "#fabd2f"
blue = "#83a598"
magenta = "#d3869b"
cyan = "#8ec07c"
white = "#ebdbb2"
[colors.cursor]
text = "#282828"
cursor = "#ebdbb2"
[colors.selection]
text = "#ebdbb2"
background = "#3c3836"

View file

@ -467,6 +467,10 @@ vim.lsp.config('ruff', {
vim.lsp.config('clangd', { vim.lsp.config('clangd', {
cmd = { "clangd", "--compile-commands-dir=build" } cmd = { "clangd", "--compile-commands-dir=build" }
}) })
vim.lsp.config('zls', {
cmd = { "/home/jaroslaw/src/zls/zig-out/bin/zls" },
})
vim.lsp.enable('lua_ls') vim.lsp.enable('lua_ls')
vim.lsp.enable('ruff') vim.lsp.enable('ruff')
vim.lsp.enable('clangd') vim.lsp.enable('clangd')