This commit is contained in:
elkowar 2021-05-03 22:16:55 +02:00
parent f901a5d71a
commit a6b4d0dbdc
No known key found for this signature in database
GPG key ID: E321AD71B1D1F27F
4 changed files with 21 additions and 11 deletions

View file

@ -24,8 +24,8 @@
bruh " < fuck > bruh " < fuck >
" "
<literal content="{{lmao}}"/>
asd FUCK FUKC FCUK CUFLKJASDFLKJASDLKJASDLKj
<label text="&lt; &gt; bruh &quot;"/> <label text="&lt; &gt; bruh &quot;"/>
@ -147,6 +147,11 @@
</script-var> </script-var>
<script-var interval="100ms" name="lmao">
cat ~/fuck
</script-var>
<var name="bruh"> <var name="bruh">
{"hi": "ho"} {"hi": "ho"}
</var> </var>
@ -176,9 +181,8 @@
</window> </window>
<window screen="0" name="mw" stacking="fg" focusable="false"> <window screen="0" name="mw" stacking="fg" focusable="false">
<!--<window screen="2" name="mw" stacking="fg" focusable="false">--> <!--<window screen="2" name="mw" stacking="fg" focusable="false">-->
<!--<reserve side="l" distance="500px"/>--> <geometry anchor="top center" width="20%" height="20%" x="50px" y="50px"/>
<geometry anchor="center" width="20%" height="50%" x="50px" y="20px"/> <reserve side="left" distance="80px"/>
<reserve x="12px" y="20px" side="top" distance="4%" layer="top" exclusive="true"/>
<widget> <widget>
<test ree="test" /> <test ree="test" />
</widget> </widget>

View file

@ -9,10 +9,14 @@
gitsigns gitsigns} gitsigns gitsigns}
require-macros [macros]}) require-macros [macros]})
(require "plugins.telescope") (macro make-errors-epic [f]
(require "plugins.lsp") `(xpcall #,f #(a.println (fennel.traceback $1))))
(require "plugins.galaxyline")
(require "plugins.bufferline") (make-errors-epic (require "plugins.telescope"))
(make-errors-epic (require "plugins.lsp"))
(make-errors-epic (require "plugins.galaxyline"))
(make-errors-epic (require "plugins.bufferline"))
(def- colors utils.colors) (def- colors utils.colors)
@ -37,8 +41,8 @@
{:ensure_installed "all" {:ensure_installed "all"
:highlight {:enable true :highlight {:enable true
:disable ["fennel"]} :disable ["fennel"]}
:indent {:enable true ;:indent {:enable true}
:disable ["lua"]} ;:disable ["lua"]}
:incremental_selection :incremental_selection
{:enable true {:enable true

View file

@ -38,6 +38,7 @@ set cursorline
set incsearch set incsearch
set hlsearch set hlsearch
set inccommand=nosplit set inccommand=nosplit
set signcolumn=yes
if (has("termguicolors")) if (has("termguicolors"))
set termguicolors set termguicolors

View file

@ -83,6 +83,7 @@ require("packer").startup(function(use)
use "hauleth/sad.vim" -- Use siw instead of ciw. when using . afterwards, will find the next occurrence of the changed word and change it too use "hauleth/sad.vim" -- Use siw instead of ciw. when using . afterwards, will find the next occurrence of the changed word and change it too
use "wellle/targets.vim" -- more text objects. IE: cin) (change in next parens). generally better handling of surrounding objects. use "wellle/targets.vim" -- more text objects. IE: cin) (change in next parens). generally better handling of surrounding objects.
use "unblevable/quick-scope" -- highlight targets when pressing f<character> use "unblevable/quick-scope" -- highlight targets when pressing f<character>
use { use {
"iamcco/markdown-preview.nvim", "iamcco/markdown-preview.nvim",
run = vim.fn["mkdp#util#install"] run = vim.fn["mkdp#util#install"]