diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-03-10 22:59:45 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-03-10 22:59:45 +0100 |
commit | aa89006af82956711e5d0b57c73d4859ce2969fc (patch) | |
tree | 79d449ac38977eae84e174b0b52fa1c8740a5247 | |
parent | ea4a0ff527107078dad5efa6a12127ba75bda7c9 (diff) |
Dump
-rw-r--r-- | dot_zshrc | 12 | ||||
-rw-r--r-- | private_dot_config/nvim/init.lua | 28 | ||||
-rw-r--r-- | private_dot_config/zellij/config.kdl | 4 |
3 files changed, 22 insertions, 22 deletions
@@ -1,12 +1,12 @@ # now use Starship instead of oh-my-zsh theme export ZSH="/home/santo/.oh-my-zsh" # ZSH_THEME="pure" -# ZSH_THEME="lukerandall" +# ZSH_THEME="dpoggi" plugins=( git zsh-autosuggestions zsh-syntax-highlighting - shrink-path + # shrink-path forgit kubectl ) @@ -68,12 +68,6 @@ eval "`fnm env`" # OCaml eval $(opam env) -# Zig -# export PATH="$PATH:/home/santo/Downloads/zig-linux-x86_64-0.12.0-dev.3381+7057bffc1" - -# jdtls -export PATH="$PATH:/home/santo/Downloads/jdtls/bin" - # Debian export DEBFULLNAME="Santo Cariotti" export DEBEMAIL="santo@dcariotti.me" @@ -101,3 +95,5 @@ alias dquilt="quilt --quiltrc=${HOME}/.quiltrc-dpkg" complete -F _quilt_completion -o filenames dquilt alias cz="chezmoi" + +# . "$HOME/.local/bin/env" diff --git a/private_dot_config/nvim/init.lua b/private_dot_config/nvim/init.lua index 64f13f3..092d647 100644 --- a/private_dot_config/nvim/init.lua +++ b/private_dot_config/nvim/init.lua @@ -24,6 +24,7 @@ require('packer').startup(function(use) -- use 'togglebyte/togglerust' -- Rust debugging tools -- use 'chriskempson/base16-vim' -- Base16 color schemes use 'NLKNguyen/papercolor-theme' -- PaperColor theme + use 'projekt0n/github-nvim-theme' use 'nvim-telescope/telescope.nvim' -- Fuzzy finder use 'neovim/nvim-lspconfig' -- LSP configuration for multiple languages use 'hrsh7th/nvim-cmp' -- Autocompletion engine @@ -42,7 +43,7 @@ require('packer').startup(function(use) use 'folke/lsp-colors.nvim' -- Adds missing LSP diagnostics highlight groups use 'sindrets/diffview.nvim' -- Git diff and history viewer - use 'mfussenegger/nvim-dap' -- Debug Adapter Protocol client implementation + use 'mfussenegger/nvim-dap' -- Debug Adapter Protocol client implementation use 'leoluz/nvim-dap-go' -- Neovim DAP extension for Go use 'nvim-neotest/nvim-nio' use 'rcarriga/nvim-dap-ui' @@ -77,10 +78,10 @@ vim.opt.wildignore = "*.png,*.jpg,*.gif,*.swp,*.o,*.pyc,vendor" vim.opt.number = true -- Show relative line numbers -vim.opt.relativenumber = true +vim.opt.relativenumber = true -- Set text width to 80 characters -vim.opt.textwidth = 80 +vim.opt.textwidth = 80 -- Highlight a column at 80 characters vim.opt.colorcolumn = "80" @@ -125,6 +126,7 @@ vim.opt.list = true -- Define characters for different invisible characters vim.opt.listchars = { eol = '⏎', tab = '» ', trail = 'ˑ', nbsp = '⎵' } vim.cmd([[match Error /.*\t$/]]) +vim.cmd([[match Error /.*\s$/]]) vim.api.nvim_create_autocmd("FileType", { pattern = { "go", "c", "cpp" }, callback = function() @@ -162,16 +164,18 @@ vim.opt.cursorline = true -- **Highlight settings** -- Set custom highlights for various UI components -vim.cmd('colorscheme PaperColor') +vim.cmd('colorscheme github_dark_default') vim.cmd [[ - highlight Normal guibg=#000000 - highlight NonText guibg=#000000 - highlight LineNr guibg=#000000 - highlight CursorLine guibg=#000000 - highlight CursorLineNr guibg=#000000 guifg=Yellow - highlight StatusLine guibg=#000000 guifg=Yellow - highlight StatusLineNC guibg=#000000 guifg=Yellow - highlight SignColumn guibg=#000000 + highlight Normal guibg=NONE + highlight NormalNC guibg=#111111 + highlight NonText guibg=NONE + highlight LineNr guibg=NONE + highlight CursorLine guibg=NONE + highlight CursorLineNr guibg=NONE guifg=Yellow + highlight Error guibg=red guifg=#000000 + "highlight StatusLine guibg=#000000 guifg=Yellow + "highlight StatusLineNC guibg=#000000 guifg=Yellow + highlight SignColumn guibg=NONE highlight GitGutterChange guibg=#000000 highlight GitGutterAdd guibg=#000000 highlight GitGutterDelete guibg=#000000 diff --git a/private_dot_config/zellij/config.kdl b/private_dot_config/zellij/config.kdl index 8c34541..65b5e1d 100644 --- a/private_dot_config/zellij/config.kdl +++ b/private_dot_config/zellij/config.kdl @@ -260,7 +260,7 @@ simplified_ui true // - true (default) // - false // -pane_frames true +pane_frames false // Toggle between having Zellij lay out panes according to a predefined set of layouts whenever possible // Options: @@ -374,7 +374,7 @@ default_layout "compact" // Path to the default editor to use to edit pane scrollbuffer // Default: $EDITOR or $VISUAL // -// scrollback_editor "/usr/bin/vim" +scrollback_editor "/usr/local/bin/nvim" // When attaching to an existing session with other users, // should the session be mirrored (true) |