From 1b17f1b6602e338455913d46d29edbb7327239ba Mon Sep 17 00:00:00 2001 From: Jaroslaw Konik Date: Fri, 24 Apr 2026 14:48:59 +0200 Subject: [PATCH] update --- .bashrc | 1 + alacritty.toml | 50 ++++++++++++++++++++++++-------------------------- init.lua | 23 +++++------------------ 3 files changed, 30 insertions(+), 44 deletions(-) diff --git a/.bashrc b/.bashrc index af99afa..8422c71 100644 --- a/.bashrc +++ b/.bashrc @@ -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" diff --git a/alacritty.toml b/alacritty.toml index 6dbc0e3..bfb4630 100644 --- a/alacritty.toml +++ b/alacritty.toml @@ -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' diff --git a/init.lua b/init.lua index 6968072..80f0170 100644 --- a/init.lua +++ b/init.lua @@ -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" },