├── .editorconfig ├── .gitattributes ├── .gitignore ├── .stylua.toml ├── LICENSE ├── README.md ├── after ├── ftdetect │ ├── circom.fnl │ ├── crisp.fnl │ ├── hy.fnl │ ├── nim.fnl │ └── noir.fnl ├── ftplugin │ ├── circom.fnl │ ├── clojure.fnl │ ├── fennel.fnl │ ├── noir.fnl │ ├── octave.fnl │ ├── query.fnl │ ├── racket.fnl │ └── sh.fnl ├── plugin │ ├── intro.fnl │ ├── mkdir.fnl │ └── qmk_hints.fnl └── queries │ ├── agda │ └── rainbow-delimiters.scm │ ├── awk │ └── parens.scm │ ├── bash │ └── injections.scm │ ├── clojure │ └── injections.scm │ ├── cpp │ └── injections.scm │ ├── crisp │ ├── highlights.scm │ ├── injections.scm │ └── rainbow-delimiters.scm │ ├── fennel │ ├── highlights.scm │ ├── injections.scm │ └── rainbow-delimiters.scm │ ├── haskell │ ├── highlights.scm │ ├── injections.scm │ └── rainbow-delimiters.scm │ ├── html │ └── injections.scm │ ├── java │ └── injections.scm │ ├── latex │ └── injections.scm │ ├── make │ └── injections.scm │ ├── markdown │ └── highlights.scm │ ├── nix │ ├── highlights.scm │ └── injections.scm │ ├── odin │ ├── highlights.scm │ └── parens.scm │ ├── query │ └── injections.scm │ ├── rst │ └── injections.scm │ ├── rust │ └── injections.scm │ └── zig │ └── injections.scm ├── dotfyle.json ├── flake.nix ├── fnl ├── autocommands.fnl ├── cats │ └── init.fnl ├── def-keymaps.fnl ├── fp │ ├── init.fnl │ ├── list.fnl │ ├── mdo-macros.fnl │ ├── option.fnl │ └── result.fnl ├── globals.fnl ├── init-macros.fnl ├── initialize.fnl ├── neovide.fnl ├── packages.fnl ├── rv-config │ ├── __template__ │ │ └── init.fnl │ ├── autopairs │ │ └── init.fnl │ ├── bufdelete │ │ └── init.fnl │ ├── colourizer │ │ └── init.fnl │ ├── comments │ │ ├── init-new.fnl │ │ ├── init-old.fnl │ │ └── init.fnl │ ├── completion │ │ ├── blink │ │ │ └── init.fnl │ │ ├── colorful-menu │ │ │ └── init.fnl │ │ ├── copilot │ │ │ └── init.fnl │ │ └── init.fnl │ ├── conjure │ │ └── init.fnl │ ├── crates │ │ └── init.fnl │ ├── dap │ │ ├── adapters │ │ │ └── lldb.fnl │ │ ├── configurations │ │ │ ├── c.fnl │ │ │ ├── cpp.fnl │ │ │ ├── rust.fnl │ │ │ └── scala.fnl │ │ ├── dapui.fnl │ │ ├── init.fnl │ │ ├── utils.fnl │ │ └── virttext.fnl │ ├── devicons │ │ └── init.fnl │ ├── dial │ │ └── init.fnl │ ├── dotfyle-metadata │ │ └── init.fnl │ ├── dressing │ │ └── init.fnl │ ├── easyalign │ │ └── init.fnl │ ├── ecolog │ │ └── init.fnl │ ├── eyeliner │ │ └── init.fnl │ ├── femaco │ │ └── init.fnl │ ├── fidget │ │ └── init.fnl │ ├── files │ │ ├── fyler │ │ │ └── init.fnl │ │ ├── init.fnl │ │ ├── neo-tree │ │ │ └── init.fnl │ │ └── oil │ │ │ └── init.fnl │ ├── flatten │ │ └── init.fnl │ ├── harpoon │ │ └── init.fnl │ ├── headlines │ │ └── init.fnl │ ├── heirline │ │ ├── common.fnl │ │ ├── components │ │ │ ├── __TEMPLATE__.fnl │ │ │ ├── align.fnl │ │ │ ├── dap.fnl │ │ │ ├── diagnostics.fnl │ │ │ ├── file.fnl │ │ │ ├── foldcolumn.fnl │ │ │ ├── git.fnl │ │ │ ├── help.fnl │ │ │ ├── location.fnl │ │ │ ├── lsp.fnl │ │ │ ├── macro.fnl │ │ │ ├── navic.fnl │ │ │ ├── numbercolumn.fnl │ │ │ ├── ruler.fnl │ │ │ ├── scrollbar.fnl │ │ │ ├── signcolumn.fnl │ │ │ ├── snippets.fnl │ │ │ ├── spell.fnl │ │ │ ├── terminal.fnl │ │ │ ├── vimode.fnl │ │ │ └── workdir.fnl │ │ ├── init.fnl │ │ ├── statuscolumns │ │ │ ├── __TEMPLATE__.fnl │ │ │ └── default.fnl │ │ ├── statuslines │ │ │ ├── __TEMPLATE__.fnl │ │ │ ├── default.fnl │ │ │ ├── inactive.fnl │ │ │ ├── special.fnl │ │ │ └── terminal.fnl │ │ ├── tablines │ │ │ ├── __TEMPLATE__.fnl │ │ │ └── default.fnl │ │ ├── utils.fnl │ │ └── winbars │ │ │ ├── __TEMPLATE__.fnl │ │ │ └── default.fnl │ ├── hlargs │ │ └── init.fnl │ ├── ibl │ │ └── init.fnl │ ├── image │ │ └── init.fnl │ ├── iron │ │ └── init.fnl │ ├── leap │ │ ├── ast.fnl │ │ └── init.fnl │ ├── lsp │ │ ├── diagnostics.fnl │ │ ├── init.fnl │ │ ├── langs │ │ │ ├── agda │ │ │ │ ├── blink-source-dbg.fnl │ │ │ │ ├── blink-source.fnl │ │ │ │ ├── cmp-source.fnl │ │ │ │ ├── init.fnl │ │ │ │ └── symbols.fnl │ │ │ ├── haskell-tools.fnl │ │ │ ├── idris2.fnl │ │ │ ├── lean.fnl │ │ │ ├── metals.fnl │ │ │ ├── nvim-java.fnl │ │ │ ├── old │ │ │ │ ├── angular.fnl │ │ │ │ ├── ansible.fnl │ │ │ │ ├── bash.fnl │ │ │ │ ├── circom.fnl │ │ │ │ ├── clangd.fnl │ │ │ │ ├── clojure.fnl │ │ │ │ ├── cmake.fnl │ │ │ │ ├── docker.fnl │ │ │ │ ├── emmet-ls.fnl │ │ │ │ ├── erlang.fnl │ │ │ │ ├── fennel.fnl │ │ │ │ ├── go.fnl │ │ │ │ ├── haskell.fnl │ │ │ │ ├── java-lsp.sh │ │ │ │ ├── java.fnl │ │ │ │ ├── jdtls.fnl │ │ │ │ ├── json.fnl │ │ │ │ ├── latex.fnl │ │ │ │ ├── lua.fnl │ │ │ │ ├── nim.fnl │ │ │ │ ├── nix.fnl │ │ │ │ ├── noir.fnl │ │ │ │ ├── ocaml.fnl │ │ │ │ ├── osserver.fnl │ │ │ │ ├── pest.fnl │ │ │ │ ├── php.fnl │ │ │ │ ├── prolog.fnl │ │ │ │ ├── purescript.fnl │ │ │ │ ├── python.fnl │ │ │ │ ├── r.fnl │ │ │ │ ├── racket.fnl │ │ │ │ ├── rust.fnl │ │ │ │ ├── solang.fnl │ │ │ │ ├── solidity.fnl │ │ │ │ ├── sqls.fnl │ │ │ │ ├── terraform.fnl │ │ │ │ ├── typst.fnl │ │ │ │ ├── wgsl.fnl │ │ │ │ ├── xml.fnl │ │ │ │ ├── yaml.fnl │ │ │ │ └── zig.fnl │ │ │ ├── roslyn.fnl │ │ │ ├── rustaceanvim.fnl │ │ │ └── texmagic.fnl │ │ ├── lightbulb.fnl │ │ ├── lines.fnl │ │ ├── signature.fnl │ │ └── utils.fnl │ ├── luasnip │ │ └── init.fnl │ ├── markdown │ │ └── init.fnl │ ├── mdlinks │ │ └── init.fnl │ ├── mind │ │ └── init.fnl │ ├── nabla │ │ └── init.fnl │ ├── neorg │ │ └── init.fnl │ ├── neotest │ │ └── init.fnl │ ├── netman │ │ └── init.fnl │ ├── nix-update │ │ └── init.fnl │ ├── noice │ │ └── init.fnl │ ├── notify │ │ └── init.fnl │ ├── paredit │ │ ├── extensions.fnl │ │ ├── generic-lisp-extension.fnl │ │ └── init.fnl │ ├── parinfer │ │ └── init.fnl │ ├── qf │ │ ├── bqf.fnl │ │ ├── init.fnl │ │ ├── pqf.fnl │ │ └── quicker.fnl │ ├── rest │ │ └── init.fnl │ ├── scm │ │ ├── git │ │ │ ├── conflict.fnl │ │ │ ├── diffview.fnl │ │ │ ├── gitlinker.fnl │ │ │ ├── gitsigns.fnl │ │ │ ├── init.fnl │ │ │ ├── neogit.fnl │ │ │ └── octo.fnl │ │ ├── init.fnl │ │ └── jj │ │ │ ├── diffconflicts.fnl │ │ │ ├── hunk.fnl │ │ │ └── init.fnl │ ├── simple-plugins.fnl │ ├── sort │ │ └── init.fnl │ ├── stay │ │ └── init.fnl │ ├── surround │ │ └── init.fnl │ ├── tabout │ │ └── init.fnl │ ├── telescope │ │ └── init.fnl │ ├── todocomments │ │ └── init.fnl │ ├── toggleterm │ │ └── init.fnl │ ├── tokyonight │ │ └── init.fnl │ ├── treesitter │ │ ├── context.fnl │ │ ├── init.fnl │ │ └── rainbow.fnl │ ├── treesj │ │ └── init.fnl │ ├── trouble │ │ └── init.fnl │ ├── typst │ │ └── init.fnl │ ├── ufo │ │ └── init.fnl │ ├── which-key │ │ └── init.fnl │ └── winshift │ │ └── init.fnl └── settings.fnl ├── init.lua ├── lsp ├── angular.fnl ├── ansible.fnl ├── bash.fnl ├── circom.fnl ├── clangd.fnl ├── clojure.fnl ├── cmake.fnl ├── docker.fnl ├── emmet-ls.fnl ├── erlang.fnl ├── fennel.fnl ├── go.fnl ├── haskell.fnl ├── java.fnl ├── json.fnl ├── latex.fnl ├── lua.fnl ├── nim.fnl ├── nix.fnl ├── noir.fnl ├── ocaml.fnl ├── pest.fnl ├── php.fnl ├── prolog.fnl ├── purescript.fnl ├── python.fnl ├── r.fnl ├── racket.fnl ├── rust.fnl ├── solang.fnl ├── solidity.fnl ├── sqls.fnl ├── terraform.fnl ├── tsserver.fnl ├── typst.fnl ├── wgsl.fnl ├── xml.fnl ├── yaml.fnl └── zig.fnl ├── lua └── bootstrap-tangerine.lua ├── luasnippets ├── agda.fnl ├── all.fnl ├── cpp.fnl └── java.fnl ├── media └── tokyonight_haskell.png ├── nix ├── apps │ └── default.nix ├── modules │ └── home-manager │ │ ├── default.nix │ │ └── reovim │ │ └── default.nix ├── pkgs │ └── default.nix └── util.nix └── syntax └── circom.vim /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/.stylua.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/README.md -------------------------------------------------------------------------------- /after/ftdetect/circom.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftdetect/circom.fnl -------------------------------------------------------------------------------- /after/ftdetect/crisp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftdetect/crisp.fnl -------------------------------------------------------------------------------- /after/ftdetect/hy.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftdetect/hy.fnl -------------------------------------------------------------------------------- /after/ftdetect/nim.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftdetect/nim.fnl -------------------------------------------------------------------------------- /after/ftdetect/noir.fnl: -------------------------------------------------------------------------------- 1 | (vim.filetype.add {:extension {:nr :noir}}) 2 | -------------------------------------------------------------------------------- /after/ftplugin/circom.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftplugin/circom.fnl -------------------------------------------------------------------------------- /after/ftplugin/clojure.fnl: -------------------------------------------------------------------------------- 1 | (vim.cmd "setlocal lisp") 2 | -------------------------------------------------------------------------------- /after/ftplugin/fennel.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftplugin/fennel.fnl -------------------------------------------------------------------------------- /after/ftplugin/noir.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftplugin/noir.fnl -------------------------------------------------------------------------------- /after/ftplugin/octave.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftplugin/octave.fnl -------------------------------------------------------------------------------- /after/ftplugin/query.fnl: -------------------------------------------------------------------------------- 1 | (tset vim.opt_local :commentstring ";; %s") 2 | -------------------------------------------------------------------------------- /after/ftplugin/racket.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftplugin/racket.fnl -------------------------------------------------------------------------------- /after/ftplugin/sh.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/ftplugin/sh.fnl -------------------------------------------------------------------------------- /after/plugin/intro.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/plugin/intro.fnl -------------------------------------------------------------------------------- /after/plugin/mkdir.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/plugin/mkdir.fnl -------------------------------------------------------------------------------- /after/plugin/qmk_hints.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/plugin/qmk_hints.fnl -------------------------------------------------------------------------------- /after/queries/agda/rainbow-delimiters.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/agda/rainbow-delimiters.scm -------------------------------------------------------------------------------- /after/queries/awk/parens.scm: -------------------------------------------------------------------------------- 1 | ; inherits: round,square,curly 2 | -------------------------------------------------------------------------------- /after/queries/bash/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/bash/injections.scm -------------------------------------------------------------------------------- /after/queries/clojure/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/clojure/injections.scm -------------------------------------------------------------------------------- /after/queries/cpp/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/cpp/injections.scm -------------------------------------------------------------------------------- /after/queries/crisp/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/crisp/highlights.scm -------------------------------------------------------------------------------- /after/queries/crisp/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/crisp/injections.scm -------------------------------------------------------------------------------- /after/queries/crisp/rainbow-delimiters.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/crisp/rainbow-delimiters.scm -------------------------------------------------------------------------------- /after/queries/fennel/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/fennel/highlights.scm -------------------------------------------------------------------------------- /after/queries/fennel/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/fennel/injections.scm -------------------------------------------------------------------------------- /after/queries/fennel/rainbow-delimiters.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/fennel/rainbow-delimiters.scm -------------------------------------------------------------------------------- /after/queries/haskell/highlights.scm: -------------------------------------------------------------------------------- 1 | ;; extends 2 | 3 | (label) @function.macro 4 | -------------------------------------------------------------------------------- /after/queries/haskell/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/haskell/injections.scm -------------------------------------------------------------------------------- /after/queries/haskell/rainbow-delimiters.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/haskell/rainbow-delimiters.scm -------------------------------------------------------------------------------- /after/queries/html/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/html/injections.scm -------------------------------------------------------------------------------- /after/queries/java/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/java/injections.scm -------------------------------------------------------------------------------- /after/queries/latex/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/latex/injections.scm -------------------------------------------------------------------------------- /after/queries/make/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/make/injections.scm -------------------------------------------------------------------------------- /after/queries/markdown/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/markdown/highlights.scm -------------------------------------------------------------------------------- /after/queries/nix/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/nix/highlights.scm -------------------------------------------------------------------------------- /after/queries/nix/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/nix/injections.scm -------------------------------------------------------------------------------- /after/queries/odin/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/odin/highlights.scm -------------------------------------------------------------------------------- /after/queries/odin/parens.scm: -------------------------------------------------------------------------------- 1 | ; inherits: round,square,curly 2 | -------------------------------------------------------------------------------- /after/queries/query/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/query/injections.scm -------------------------------------------------------------------------------- /after/queries/rst/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/rst/injections.scm -------------------------------------------------------------------------------- /after/queries/rust/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/rust/injections.scm -------------------------------------------------------------------------------- /after/queries/zig/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/after/queries/zig/injections.scm -------------------------------------------------------------------------------- /dotfyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/dotfyle.json -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/flake.nix -------------------------------------------------------------------------------- /fnl/autocommands.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/autocommands.fnl -------------------------------------------------------------------------------- /fnl/cats/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/cats/init.fnl -------------------------------------------------------------------------------- /fnl/def-keymaps.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/def-keymaps.fnl -------------------------------------------------------------------------------- /fnl/fp/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/fp/init.fnl -------------------------------------------------------------------------------- /fnl/fp/list.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/fp/list.fnl -------------------------------------------------------------------------------- /fnl/fp/mdo-macros.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/fp/mdo-macros.fnl -------------------------------------------------------------------------------- /fnl/fp/option.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/fp/option.fnl -------------------------------------------------------------------------------- /fnl/fp/result.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/fp/result.fnl -------------------------------------------------------------------------------- /fnl/globals.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/globals.fnl -------------------------------------------------------------------------------- /fnl/init-macros.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/init-macros.fnl -------------------------------------------------------------------------------- /fnl/initialize.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/initialize.fnl -------------------------------------------------------------------------------- /fnl/neovide.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/neovide.fnl -------------------------------------------------------------------------------- /fnl/packages.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/packages.fnl -------------------------------------------------------------------------------- /fnl/rv-config/__template__/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/__template__/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/autopairs/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/autopairs/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/bufdelete/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/bufdelete/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/colourizer/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/colourizer/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/comments/init-new.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/comments/init-new.fnl -------------------------------------------------------------------------------- /fnl/rv-config/comments/init-old.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/comments/init-old.fnl -------------------------------------------------------------------------------- /fnl/rv-config/comments/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/comments/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/completion/blink/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/completion/blink/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/completion/colorful-menu/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/completion/colorful-menu/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/completion/copilot/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/completion/copilot/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/completion/init.fnl: -------------------------------------------------------------------------------- 1 | (require (.. ... :.blink)) 2 | -------------------------------------------------------------------------------- /fnl/rv-config/conjure/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/conjure/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/crates/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/crates/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dap/adapters/lldb.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dap/adapters/lldb.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dap/configurations/c.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dap/configurations/c.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dap/configurations/cpp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dap/configurations/cpp.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dap/configurations/rust.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dap/configurations/rust.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dap/configurations/scala.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dap/configurations/scala.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dap/dapui.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dap/dapui.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dap/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dap/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dap/utils.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dap/utils.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dap/virttext.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dap/virttext.fnl -------------------------------------------------------------------------------- /fnl/rv-config/devicons/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/devicons/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dial/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dial/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dotfyle-metadata/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dotfyle-metadata/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/dressing/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/dressing/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/easyalign/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/easyalign/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/ecolog/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/ecolog/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/eyeliner/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/eyeliner/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/femaco/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/femaco/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/fidget/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/fidget/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/files/fyler/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/files/fyler/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/files/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/files/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/files/neo-tree/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/files/neo-tree/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/files/oil/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/files/oil/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/flatten/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/flatten/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/harpoon/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/harpoon/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/headlines/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/headlines/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/common.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/common.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/__TEMPLATE__.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/__TEMPLATE__.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/align.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/align.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/dap.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/dap.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/diagnostics.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/diagnostics.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/file.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/file.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/foldcolumn.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/foldcolumn.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/git.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/git.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/help.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/help.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/location.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/location.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/lsp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/lsp.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/macro.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/macro.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/navic.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/navic.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/numbercolumn.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/numbercolumn.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/ruler.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/ruler.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/scrollbar.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/scrollbar.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/signcolumn.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/signcolumn.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/snippets.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/snippets.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/spell.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/spell.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/terminal.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/terminal.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/vimode.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/vimode.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/components/workdir.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/components/workdir.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/statuscolumns/__TEMPLATE__.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/statuscolumns/__TEMPLATE__.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/statuscolumns/default.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/statuscolumns/default.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/statuslines/__TEMPLATE__.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/statuslines/__TEMPLATE__.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/statuslines/default.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/statuslines/default.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/statuslines/inactive.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/statuslines/inactive.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/statuslines/special.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/statuslines/special.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/statuslines/terminal.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/statuslines/terminal.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/tablines/__TEMPLATE__.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/tablines/__TEMPLATE__.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/tablines/default.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/tablines/default.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/utils.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/utils.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/winbars/__TEMPLATE__.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/winbars/__TEMPLATE__.fnl -------------------------------------------------------------------------------- /fnl/rv-config/heirline/winbars/default.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/heirline/winbars/default.fnl -------------------------------------------------------------------------------- /fnl/rv-config/hlargs/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/hlargs/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/ibl/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/ibl/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/image/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/image/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/iron/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/iron/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/leap/ast.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/leap/ast.fnl -------------------------------------------------------------------------------- /fnl/rv-config/leap/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/leap/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/diagnostics.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/diagnostics.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/agda/blink-source-dbg.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/agda/blink-source-dbg.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/agda/blink-source.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/agda/blink-source.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/agda/cmp-source.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/agda/cmp-source.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/agda/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/agda/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/agda/symbols.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/agda/symbols.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/haskell-tools.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/haskell-tools.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/idris2.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/idris2.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/lean.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/lean.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/metals.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/metals.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/nvim-java.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/nvim-java.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/angular.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/angular.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/ansible.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/ansible.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/bash.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/bash.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/circom.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/circom.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/clangd.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/clangd.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/clojure.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/clojure.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/cmake.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/cmake.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/docker.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/docker.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/emmet-ls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/emmet-ls.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/erlang.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/erlang.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/fennel.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/fennel.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/go.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/go.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/haskell.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/haskell.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/java-lsp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/java-lsp.sh -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/java.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/java.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/jdtls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/jdtls.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/json.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/json.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/latex.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/latex.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/lua.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/lua.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/nim.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/nim.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/nix.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/nix.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/noir.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/noir.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/ocaml.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/ocaml.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/osserver.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/osserver.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/pest.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/pest.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/php.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/php.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/prolog.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/prolog.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/purescript.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/purescript.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/python.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/python.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/r.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/r.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/racket.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/racket.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/rust.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/rust.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/solang.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/solang.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/solidity.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/solidity.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/sqls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/sqls.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/terraform.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/terraform.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/typst.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/typst.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/wgsl.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/wgsl.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/xml.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/xml.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/yaml.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/yaml.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/old/zig.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/old/zig.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/roslyn.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/roslyn.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/rustaceanvim.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/rustaceanvim.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/langs/texmagic.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/langs/texmagic.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/lightbulb.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/lightbulb.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/lines.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/lines.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/signature.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/signature.fnl -------------------------------------------------------------------------------- /fnl/rv-config/lsp/utils.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/lsp/utils.fnl -------------------------------------------------------------------------------- /fnl/rv-config/luasnip/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/luasnip/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/markdown/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/markdown/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/mdlinks/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/mdlinks/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/mind/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/mind/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/nabla/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/nabla/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/neorg/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/neorg/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/neotest/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/neotest/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/netman/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/netman/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/nix-update/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/nix-update/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/noice/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/noice/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/notify/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/notify/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/paredit/extensions.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/paredit/extensions.fnl -------------------------------------------------------------------------------- /fnl/rv-config/paredit/generic-lisp-extension.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/paredit/generic-lisp-extension.fnl -------------------------------------------------------------------------------- /fnl/rv-config/paredit/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/paredit/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/parinfer/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/parinfer/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/qf/bqf.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/qf/bqf.fnl -------------------------------------------------------------------------------- /fnl/rv-config/qf/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/qf/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/qf/pqf.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/qf/pqf.fnl -------------------------------------------------------------------------------- /fnl/rv-config/qf/quicker.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/qf/quicker.fnl -------------------------------------------------------------------------------- /fnl/rv-config/rest/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/rest/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/git/conflict.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/git/conflict.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/git/diffview.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/git/diffview.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/git/gitlinker.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/git/gitlinker.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/git/gitsigns.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/git/gitsigns.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/git/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/git/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/git/neogit.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/git/neogit.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/git/octo.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/git/octo.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/jj/diffconflicts.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/jj/diffconflicts.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/jj/hunk.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/jj/hunk.fnl -------------------------------------------------------------------------------- /fnl/rv-config/scm/jj/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/scm/jj/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/simple-plugins.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/simple-plugins.fnl -------------------------------------------------------------------------------- /fnl/rv-config/sort/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/sort/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/stay/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/stay/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/surround/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/surround/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/tabout/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/tabout/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/telescope/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/telescope/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/todocomments/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/todocomments/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/toggleterm/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/toggleterm/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/tokyonight/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/tokyonight/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/treesitter/context.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/treesitter/context.fnl -------------------------------------------------------------------------------- /fnl/rv-config/treesitter/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/treesitter/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/treesitter/rainbow.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/treesitter/rainbow.fnl -------------------------------------------------------------------------------- /fnl/rv-config/treesj/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/treesj/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/trouble/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/trouble/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/typst/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/typst/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/ufo/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/ufo/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/which-key/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/which-key/init.fnl -------------------------------------------------------------------------------- /fnl/rv-config/winshift/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/rv-config/winshift/init.fnl -------------------------------------------------------------------------------- /fnl/settings.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/fnl/settings.fnl -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/init.lua -------------------------------------------------------------------------------- /lsp/angular.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/angular.fnl -------------------------------------------------------------------------------- /lsp/ansible.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/ansible.fnl -------------------------------------------------------------------------------- /lsp/bash.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/bash.fnl -------------------------------------------------------------------------------- /lsp/circom.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/circom.fnl -------------------------------------------------------------------------------- /lsp/clangd.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/clangd.fnl -------------------------------------------------------------------------------- /lsp/clojure.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/clojure.fnl -------------------------------------------------------------------------------- /lsp/cmake.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/cmake.fnl -------------------------------------------------------------------------------- /lsp/docker.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/docker.fnl -------------------------------------------------------------------------------- /lsp/emmet-ls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/emmet-ls.fnl -------------------------------------------------------------------------------- /lsp/erlang.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/erlang.fnl -------------------------------------------------------------------------------- /lsp/fennel.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/fennel.fnl -------------------------------------------------------------------------------- /lsp/go.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/go.fnl -------------------------------------------------------------------------------- /lsp/haskell.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/haskell.fnl -------------------------------------------------------------------------------- /lsp/java.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/java.fnl -------------------------------------------------------------------------------- /lsp/json.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/json.fnl -------------------------------------------------------------------------------- /lsp/latex.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/latex.fnl -------------------------------------------------------------------------------- /lsp/lua.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/lua.fnl -------------------------------------------------------------------------------- /lsp/nim.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/nim.fnl -------------------------------------------------------------------------------- /lsp/nix.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/nix.fnl -------------------------------------------------------------------------------- /lsp/noir.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/noir.fnl -------------------------------------------------------------------------------- /lsp/ocaml.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/ocaml.fnl -------------------------------------------------------------------------------- /lsp/pest.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/pest.fnl -------------------------------------------------------------------------------- /lsp/php.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/php.fnl -------------------------------------------------------------------------------- /lsp/prolog.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/prolog.fnl -------------------------------------------------------------------------------- /lsp/purescript.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/purescript.fnl -------------------------------------------------------------------------------- /lsp/python.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/python.fnl -------------------------------------------------------------------------------- /lsp/r.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/r.fnl -------------------------------------------------------------------------------- /lsp/racket.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/racket.fnl -------------------------------------------------------------------------------- /lsp/rust.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/rust.fnl -------------------------------------------------------------------------------- /lsp/solang.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/solang.fnl -------------------------------------------------------------------------------- /lsp/solidity.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/solidity.fnl -------------------------------------------------------------------------------- /lsp/sqls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/sqls.fnl -------------------------------------------------------------------------------- /lsp/terraform.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/terraform.fnl -------------------------------------------------------------------------------- /lsp/tsserver.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/tsserver.fnl -------------------------------------------------------------------------------- /lsp/typst.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/typst.fnl -------------------------------------------------------------------------------- /lsp/wgsl.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/wgsl.fnl -------------------------------------------------------------------------------- /lsp/xml.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/xml.fnl -------------------------------------------------------------------------------- /lsp/yaml.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/yaml.fnl -------------------------------------------------------------------------------- /lsp/zig.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lsp/zig.fnl -------------------------------------------------------------------------------- /lua/bootstrap-tangerine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/lua/bootstrap-tangerine.lua -------------------------------------------------------------------------------- /luasnippets/agda.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/luasnippets/agda.fnl -------------------------------------------------------------------------------- /luasnippets/all.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/luasnippets/all.fnl -------------------------------------------------------------------------------- /luasnippets/cpp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/luasnippets/cpp.fnl -------------------------------------------------------------------------------- /luasnippets/java.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/luasnippets/java.fnl -------------------------------------------------------------------------------- /media/tokyonight_haskell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/media/tokyonight_haskell.png -------------------------------------------------------------------------------- /nix/apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/nix/apps/default.nix -------------------------------------------------------------------------------- /nix/modules/home-manager/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/nix/modules/home-manager/default.nix -------------------------------------------------------------------------------- /nix/modules/home-manager/reovim/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/nix/modules/home-manager/reovim/default.nix -------------------------------------------------------------------------------- /nix/pkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/nix/pkgs/default.nix -------------------------------------------------------------------------------- /nix/util.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/nix/util.nix -------------------------------------------------------------------------------- /syntax/circom.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reo101/reovim/HEAD/syntax/circom.vim --------------------------------------------------------------------------------