clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

adding outline, yank to clipboard obsidian, ..

sspaeti 55d59643 20c4dc43

+28 -4
+3
Brewfile
··· 56 56 brew "qmk/qmk/qmk" 57 57 cask "amethyst" 58 58 cask "asana" 59 + cask "beekeeper-studio" 59 60 cask "disk-inventory-x" 60 61 cask "docker" 61 62 cask "drawio" 62 63 cask "flux" 63 64 cask "gitkraken" 65 + cask "google-chrome" 64 66 cask "google-drive" 65 67 cask "grammarly-desktop" 66 68 cask "hey" 67 69 cask "istat-menus" 68 70 cask "kitty" 71 + cask "lastpass" 69 72 cask "mark-text" 70 73 cask "notion" 71 74 cask "obsidian"
+12 -3
nvim/init.vim
··· 26 26 Plug 'christoomey/vim-system-copy' 27 27 "Plug 'valloric/youcompleteme' 28 28 Plug 'tpope/vim-surround' " Surrounding ysw) 29 - Plug 'ambv/black' 29 + "Plug 'ambv/black' 30 + Plug 'psf/black', { 'branch': 'stable' } 30 31 Plug 'tpope/vim-fugitive' 31 32 " " telescope requirements... 32 33 " Plug 'nvim-lua/popup.nvim' ··· 57 58 58 59 Plug 'liuchengxu/vim-which-key' 59 60 Plug 'github/copilot.vim' 61 + "Markdown (or any Outline 62 + Plug 'simrat39/symbols-outline.nvim' 60 63 call plug#end() 61 64 "install with :PlugInstall 62 65 66 + 67 + 68 + " source coc custom configs 69 + source $HOME/.config/nvim/coc.vim 63 70 64 71 " Ignore files 65 72 set wildignore+=*.pyc ··· 250 257 nnoremap <C-l> :NERDTreeToggle<CR> 251 258 " nnoremap <C-f> :NERDTreeFind<CR> 252 259 260 + " Outline Shortcut 261 + nmap <leader>o :SymbolsOutline<CR> 262 + 253 263 " fzf: ctrl f for find files 254 264 nnoremap <C-p> :Files<CR> 255 265 " this will quick search content of files ··· 307 317 " Commenting blocks of code. 308 318 augroup commenting_blocks_of_code 309 319 autocmd! 310 - autocmd FileType c,cpp,java,scala let b:comment_leader = '// ' 320 + autocmd FileType c,cpp,java,scala let b:comment_leadej = '// ' 311 321 autocmd FileType sh,ruby,python,yaml let b:comment_leader = '# ' 312 322 autocmd FileType conf,fstab let b:comment_leader = '# ' 313 323 autocmd FileType tex let b:comment_leader = '% ' ··· 326 336 "cusotm stuff just for neovim 327 337 source $HOME/.config/nvim/themes/airline.vim 328 338 source $HOME/.config/nvim/themes/onedark.vim 329 - source $HOME/.config/nvim/coc.vim 330 339 "syntax on 331 340 332 341 ""Gruvbox:
+3
obsidian/.vimrc
··· 14 14 " nmap $ g$ 15 15 " nmap ^ g^ 16 16 " nmap 0 g^ 17 + 18 + "yank to clipboard 19 + set clipboard=unnamed
+1 -1
obsidian/appearance.json
··· 1 1 { 2 - "baseFontSize": 18, 2 + "baseFontSize": 17, 3 3 "cssTheme": "Obsidian gruvbox", 4 4 "theme": "obsidian", 5 5 "enabledCssSnippets": [
+9
obsidian/hotkeys.json
··· 135 135 ], 136 136 "key": ";" 137 137 } 138 + ], 139 + "editor:toggle-bullet-list": [ 140 + { 141 + "modifiers": [ 142 + "Mod", 143 + "Shift" 144 + ], 145 + "key": "B" 146 + } 138 147 ] 139 148 }