clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

remove symbols-outline.nvim (as aerial.nvim I use for outline)

+1 -145
-72
nvim-wp/lua/sspaeti/plugins/markdown.lua
··· 100 100 -- vim.g.vimwiki_global_ext = 0 --only mark files in the second brain as vim viki, rest are standard markdown 101 101 -- end, 102 102 --}, 103 - { 104 - --Markdown (or any Outline) 105 - "simrat39/symbols-outline.nvim", 106 - event = "VeryLazy", 107 - config = function() 108 - local opts = { 109 - highlight_hovered_item = true, 110 - show_guides = true, 111 - auto_preview = false, 112 - position = 'right', 113 - relative_width = true, 114 - width = 25, 115 - auto_close = false, 116 - show_numbers = false, 117 - show_relative_numbers = false, 118 - show_symbol_details = true, 119 - preview_bg_highlight = 'Pmenu', 120 - autofold_depth = nil, 121 - auto_unfold_hover = true, 122 - fold_markers = { '', '' }, 123 - wrap = false, 124 - keymaps = { -- These keymaps can be a string or a table for multiple keys 125 - close = { "<Esc>", "q" }, 126 - goto_location = "<Cr>", 127 - focus_location = "o", 128 - hover_symbol = "<C-space>", 129 - toggle_preview = "K", 130 - rename_symbol = "r", 131 - code_actions = "a", 132 - fold = "h", 133 - unfold = "l", 134 - fold_all = "W", 135 - unfold_all = "E", 136 - fold_reset = "R", 137 - }, 138 - lsp_blacklist = {}, 139 - symbol_blacklist = {}, 140 - symbols = { 141 - File = { icon = "", hl = "TSURI" }, 142 - Module = { icon = "", hl = "TSNamespace" }, 143 - Namespace = { icon = "", hl = "TSNamespace" }, 144 - Package = { icon = "", hl = "TSNamespace" }, 145 - Class = { icon = "𝓒", hl = "TSType" }, 146 - Method = { icon = "ƒ", hl = "TSMethod" }, 147 - Property = { icon = "", hl = "TSMethod" }, 148 - Field = { icon = "", hl = "TSField" }, 149 - Constructor = { icon = "", hl = "TSConstructor" }, 150 - Enum = { icon = "ℰ", hl = "TSType" }, 151 - Interface = { icon = "ﰮ", hl = "TSType" }, 152 - Function = { icon = "", hl = "TSFunction" }, 153 - Variable = { icon = "", hl = "TSConstant" }, 154 - Constant = { icon = "", hl = "TSConstant" }, 155 - String = { icon = "𝓐", hl = "TSString" }, 156 - Number = { icon = "#", hl = "TSNumber" }, 157 - Boolean = { icon = "⊨", hl = "TSBoolean" }, 158 - Array = { icon = "", hl = "TSConstant" }, 159 - Object = { icon = "⦿", hl = "TSType" }, 160 - Key = { icon = "🔐", hl = "TSType" }, 161 - Null = { icon = "NULL", hl = "TSType" }, 162 - EnumMember = { icon = "", hl = "TSField" }, 163 - Struct = { icon = "𝓢", hl = "TSType" }, 164 - Event = { icon = "🗲", hl = "TSType" }, 165 - Operator = { icon = "+", hl = "TSOperator" }, 166 - TypeParameter = { icon = "𝙏", hl = "TSParameter" } 167 - } 168 - } 169 - 170 - require("symbols-outline").setup({ 171 - sources = opts, 172 - }) 173 - end 174 - } 175 103 -- , Replaced by markdown.nvim?? 176 104 -- { -- needed by 'preservim/vim-markdown' 177 105 -- "godlygeek/tabular",
+1 -1
nvim-wp/lua/sspaeti/set_wp.lua
··· 11 11 -- vim.opt.textwidth = 80 12 12 13 13 vim.opt.wrap = true 14 - vim.opt.linebreak = true -- Break lines at word boundaries 14 + vim.opt.linebreak = true -- Break lines at word boundaries. Avoids cuting words at end of the line 15 15 vim.opt.breakindent = true -- Preserve indentation of virtual lines 16 16 vim.opt.breakindentopt = "shift:1" -- Add extra indent for wrapped lines 17 17 vim.opt.showbreak = "↪ " -- Show a symbol at the start of wrapped lines
-72
nvim/lua/sspaeti/plugins/markdown.lua
··· 108 108 -- vim.g.vimwiki_global_ext = 0 --only mark files in the second brain as vim viki, rest are standard markdown 109 109 -- end, 110 110 --}, 111 - { 112 - --Markdown (or any Outline) 113 - "simrat39/symbols-outline.nvim", 114 - event = "VeryLazy", 115 - config = function() 116 - local opts = { 117 - highlight_hovered_item = true, 118 - show_guides = true, 119 - auto_preview = false, 120 - position = 'right', 121 - relative_width = true, 122 - width = 25, 123 - auto_close = false, 124 - show_numbers = false, 125 - show_relative_numbers = false, 126 - show_symbol_details = true, 127 - preview_bg_highlight = 'Pmenu', 128 - autofold_depth = nil, 129 - auto_unfold_hover = true, 130 - fold_markers = { '', '' }, 131 - wrap = false, 132 - keymaps = { -- These keymaps can be a string or a table for multiple keys 133 - close = { "<Esc>", "q" }, 134 - goto_location = "<Cr>", 135 - focus_location = "o", 136 - hover_symbol = "<C-space>", 137 - toggle_preview = "K", 138 - rename_symbol = "r", 139 - code_actions = "a", 140 - fold = "h", 141 - unfold = "l", 142 - fold_all = "W", 143 - unfold_all = "E", 144 - fold_reset = "R", 145 - }, 146 - lsp_blacklist = {}, 147 - symbol_blacklist = {}, 148 - symbols = { 149 - File = { icon = "", hl = "TSURI" }, 150 - Module = { icon = "", hl = "TSNamespace" }, 151 - Namespace = { icon = "", hl = "TSNamespace" }, 152 - Package = { icon = "", hl = "TSNamespace" }, 153 - Class = { icon = "𝓒", hl = "TSType" }, 154 - Method = { icon = "ƒ", hl = "TSMethod" }, 155 - Property = { icon = "", hl = "TSMethod" }, 156 - Field = { icon = "", hl = "TSField" }, 157 - Constructor = { icon = "", hl = "TSConstructor" }, 158 - Enum = { icon = "ℰ", hl = "TSType" }, 159 - Interface = { icon = "ﰮ", hl = "TSType" }, 160 - Function = { icon = "", hl = "TSFunction" }, 161 - Variable = { icon = "", hl = "TSConstant" }, 162 - Constant = { icon = "", hl = "TSConstant" }, 163 - String = { icon = "𝓐", hl = "TSString" }, 164 - Number = { icon = "#", hl = "TSNumber" }, 165 - Boolean = { icon = "⊨", hl = "TSBoolean" }, 166 - Array = { icon = "", hl = "TSConstant" }, 167 - Object = { icon = "⦿", hl = "TSType" }, 168 - Key = { icon = "🔐", hl = "TSType" }, 169 - Null = { icon = "NULL", hl = "TSType" }, 170 - EnumMember = { icon = "", hl = "TSField" }, 171 - Struct = { icon = "𝓢", hl = "TSType" }, 172 - Event = { icon = "🗲", hl = "TSType" }, 173 - Operator = { icon = "+", hl = "TSOperator" }, 174 - TypeParameter = { icon = "𝙏", hl = "TSParameter" } 175 - } 176 - } 177 - 178 - require("symbols-outline").setup({ 179 - sources = opts, 180 - }) 181 - end 182 - } 183 111 -- , Replaced by markdown.nvim?? 184 112 -- { -- needed by 'preservim/vim-markdown' 185 113 -- "godlygeek/tabular",