clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add color for indentation and fix colors for kanagawa

sspaeti b23e2308 07303fcc

+22 -4
+3 -3
nvim/init.vim
··· 448 448 nnoremap <leader>io :IO<CR> 449 449 450 450 "cusotm stuff just for neovim 451 - source $HOME/.config/nvim/themes/airline.vim 452 - source $HOME/.config/nvim/themes/onedark.vim 453 - source $HOME/.config/nvim/themes/tokyonight.vim 451 + "source $HOME/.config/nvim/themes/airline.vim 452 + "source $HOME/.config/nvim/themes/onedark.vim 453 + "source $HOME/.config/nvim/themes/tokyonight.vim 454 454 455 455 " source settings 456 456 source $HOME/.config/nvim/plugin/harpoon.vim
+2 -1
nvim/lua/my_basic.lua
··· 1 - vim.opt.listchars = {eol = '↵', tab = '→~', lead = '·', trail = '·', extends = "$"} 1 + vim.opt.listchars = {eol = '↵', tab = '→~', trail = '·', extends = "$"} 2 + --lead = '·', 2 3 vim.opt.list = true
+17
nvim/lua/plugins/indent-blankline.lua
··· 1 + print('this also works') 2 + 3 + vim.cmd [[highlight IndentBlanklineIndent1 guibg=#1F1F28 gui=nocombine]] 4 + vim.cmd [[highlight IndentBlanklineIndent2 guibg=#252535 gui=nocombine]] 5 + 6 + require("indent_blankline").setup { 7 + char = "", 8 + char_highlight_list = { 9 + "IndentBlanklineIndent1", 10 + "IndentBlanklineIndent2", 11 + }, 12 + space_char_highlight_list = { 13 + "IndentBlanklineIndent1", 14 + "IndentBlanklineIndent2", 15 + }, 16 + show_trailing_blankline_indent = false, 17 + }