This commit is contained in:
Jaroslaw Konik 2026-04-24 14:48:59 +02:00
parent 7cf0a39802
commit 1b17f1b660
3 changed files with 30 additions and 44 deletions

View file

@ -25,3 +25,4 @@ echo "You are not here to produce."
echo "You are here to witness." echo "You are here to witness."
echo "色即是空 空即是色" echo "色即是空 空即是色"
eval "$(direnv hook bash)" eval "$(direnv hook bash)"
export PATH="$HOME/.npm-global/bin:$PATH"

View file

@ -7,34 +7,32 @@ size = 13.0
[selection] [selection]
save_to_clipboard = false save_to_clipboard = false
# Default colors
[colors.primary] [colors.primary]
background = "#282828" # hard contrast background = = '#1d2021'
foreground = "#ebdbb2" background = '#282828'
# soft contrast background = = '#32302f'
foreground = '#ebdbb2'
# Normal colors
[colors.normal] [colors.normal]
black = "#282828" black = '#282828'
red = "#cc241d" red = '#cc241d'
green = "#98971a" green = '#98971a'
yellow = "#d79921" yellow = '#d79921'
blue = "#458588" blue = '#458588'
magenta = "#b16286" magenta = '#b16286'
cyan = "#689d6a" cyan = '#689d6a'
white = "#a89984" white = '#a89984'
# Bright colors
[colors.bright] [colors.bright]
black = "#928374" black = '#928374'
red = "#fb4934" red = '#fb4934'
green = "#b8bb26" green = '#b8bb26'
yellow = "#fabd2f" yellow = '#fabd2f'
blue = "#83a598" blue = '#83a598'
magenta = "#d3869b" magenta = '#d3869b'
cyan = "#8ec07c" cyan = '#8ec07c'
white = "#ebdbb2" white = '#ebdbb2'
[colors.cursor]
text = "#282828"
cursor = "#ebdbb2"
[colors.selection]
text = "#ebdbb2"
background = "#3c3836"

View file

@ -108,7 +108,7 @@ require("lazy").setup({
} }
} }
}, },
{ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" }, { "nvim-treesitter/nvim-treesitter", lazy = false, build = ":TSUpdate" },
{ {
"benlubas/molten-nvim", "benlubas/molten-nvim",
version = "^1.0.0", version = "^1.0.0",
@ -315,6 +315,10 @@ require("lazy").setup({
vim.cmd.colorscheme "gruvbox" vim.cmd.colorscheme "gruvbox"
end end
}, },
{
"xiyaowong/transparent.nvim"
},
{ {
"rcarriga/nvim-dap-ui", "rcarriga/nvim-dap-ui",
dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio" } dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio" }
@ -347,20 +351,6 @@ require("lazy").setup({
'rhaiscript/vim-rhai' 'rhaiscript/vim-rhai'
}) })
-------------------------------------------------------------------------------
-- Treesitter
-------------------------------------------------------------------------------
require 'nvim-treesitter.configs'.setup({
ensure_installed = {},
auto_install = true,
highlight = {
enable = true
},
sync_install = false,
ignore_install = {},
modules = {}
})
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- Autocomplete -- Autocomplete
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
@ -464,9 +454,6 @@ vim.lsp.config('ruff', {
} }
} }
}) })
vim.lsp.config('clangd', {
cmd = { "clangd", "--compile-commands-dir=build" }
})
vim.lsp.config('zls', { vim.lsp.config('zls', {
cmd = { "/home/jaroslaw/src/zls/zig-out/bin/zls" }, cmd = { "/home/jaroslaw/src/zls/zig-out/bin/zls" },