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 "色即是空 空即是色"
eval "$(direnv hook bash)"
export PATH="$HOME/.npm-global/bin:$PATH"

View file

@ -7,34 +7,32 @@ size = 13.0
[selection]
save_to_clipboard = false
# Default colors
[colors.primary]
background = "#282828"
foreground = "#ebdbb2"
# 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"
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"
[colors.cursor]
text = "#282828"
cursor = "#ebdbb2"
[colors.selection]
text = "#ebdbb2"
background = "#3c3836"
black = '#928374'
red = '#fb4934'
green = '#b8bb26'
yellow = '#fabd2f'
blue = '#83a598'
magenta = '#d3869b'
cyan = '#8ec07c'
white = '#ebdbb2'

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