├── .gitignore ├── .gitmodules ├── .signers ├── README.md ├── after └── plugin │ └── signs.fnl ├── colors └── monk.vim ├── flsproject.fnl ├── fnl ├── colors │ └── monk.fnl ├── picker.fnl └── util.fnl ├── init.vim ├── lsp ├── bashls.fnl ├── ccls.fnl ├── copilot.fnl ├── cssls.fnl ├── dockerls.fnl ├── fennel_ls.fnl ├── golangci_lint_ls.fnl ├── gopls.fnl ├── html.fnl ├── jsonls.fnl ├── ols.fnl ├── pylsp.fnl ├── rust_analyzer.fnl ├── terraformls.fnl ├── tflint.fnl ├── ts_ls.fnl ├── ty.fnl ├── v_analyzer.fnl ├── vue_ls.fnl ├── yamlls.fnl └── zls.fnl ├── nvim-pack-lock.json ├── plugin ├── boot │ └── packages.fnl ├── core │ ├── autocmds.fnl │ ├── commands.fnl │ ├── disable.fnl │ ├── keymaps.fnl │ ├── lsp.fnl │ ├── options.fnl │ └── ui.fnl ├── lang │ ├── fmt.fnl │ ├── fnl.fnl │ ├── go.fnl │ ├── lint.fnl │ ├── scala.fnl │ └── ts_err.fnl ├── other │ └── neovide.fnl └── util │ ├── colorizer.fnl │ ├── package_info.fnl │ ├── picker.fnl │ ├── pqf.fnl │ ├── term.fnl │ └── trim.fnl └── queries ├── fennel └── highlights.scm └── scala └── injections.scm /.gitignore: -------------------------------------------------------------------------------- 1 | .ignore 2 | .netrwhist 3 | /spell/* 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/.gitmodules -------------------------------------------------------------------------------- /.signers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/.signers -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/README.md -------------------------------------------------------------------------------- /after/plugin/signs.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/after/plugin/signs.fnl -------------------------------------------------------------------------------- /colors/monk.vim: -------------------------------------------------------------------------------- 1 | lua require'colors.monk'() 2 | -------------------------------------------------------------------------------- /flsproject.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/flsproject.fnl -------------------------------------------------------------------------------- /fnl/colors/monk.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/fnl/colors/monk.fnl -------------------------------------------------------------------------------- /fnl/picker.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/fnl/picker.fnl -------------------------------------------------------------------------------- /fnl/util.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/fnl/util.fnl -------------------------------------------------------------------------------- /init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/init.vim -------------------------------------------------------------------------------- /lsp/bashls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/bashls.fnl -------------------------------------------------------------------------------- /lsp/ccls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/ccls.fnl -------------------------------------------------------------------------------- /lsp/copilot.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/copilot.fnl -------------------------------------------------------------------------------- /lsp/cssls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/cssls.fnl -------------------------------------------------------------------------------- /lsp/dockerls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/dockerls.fnl -------------------------------------------------------------------------------- /lsp/fennel_ls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/fennel_ls.fnl -------------------------------------------------------------------------------- /lsp/golangci_lint_ls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/golangci_lint_ls.fnl -------------------------------------------------------------------------------- /lsp/gopls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/gopls.fnl -------------------------------------------------------------------------------- /lsp/html.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/html.fnl -------------------------------------------------------------------------------- /lsp/jsonls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/jsonls.fnl -------------------------------------------------------------------------------- /lsp/ols.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/ols.fnl -------------------------------------------------------------------------------- /lsp/pylsp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/pylsp.fnl -------------------------------------------------------------------------------- /lsp/rust_analyzer.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/rust_analyzer.fnl -------------------------------------------------------------------------------- /lsp/terraformls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/terraformls.fnl -------------------------------------------------------------------------------- /lsp/tflint.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/tflint.fnl -------------------------------------------------------------------------------- /lsp/ts_ls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/ts_ls.fnl -------------------------------------------------------------------------------- /lsp/ty.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/ty.fnl -------------------------------------------------------------------------------- /lsp/v_analyzer.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/v_analyzer.fnl -------------------------------------------------------------------------------- /lsp/vue_ls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/vue_ls.fnl -------------------------------------------------------------------------------- /lsp/yamlls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/yamlls.fnl -------------------------------------------------------------------------------- /lsp/zls.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/lsp/zls.fnl -------------------------------------------------------------------------------- /nvim-pack-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/nvim-pack-lock.json -------------------------------------------------------------------------------- /plugin/boot/packages.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/boot/packages.fnl -------------------------------------------------------------------------------- /plugin/core/autocmds.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/core/autocmds.fnl -------------------------------------------------------------------------------- /plugin/core/commands.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/core/commands.fnl -------------------------------------------------------------------------------- /plugin/core/disable.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/core/disable.fnl -------------------------------------------------------------------------------- /plugin/core/keymaps.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/core/keymaps.fnl -------------------------------------------------------------------------------- /plugin/core/lsp.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/core/lsp.fnl -------------------------------------------------------------------------------- /plugin/core/options.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/core/options.fnl -------------------------------------------------------------------------------- /plugin/core/ui.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/core/ui.fnl -------------------------------------------------------------------------------- /plugin/lang/fmt.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/lang/fmt.fnl -------------------------------------------------------------------------------- /plugin/lang/fnl.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/lang/fnl.fnl -------------------------------------------------------------------------------- /plugin/lang/go.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/lang/go.fnl -------------------------------------------------------------------------------- /plugin/lang/lint.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/lang/lint.fnl -------------------------------------------------------------------------------- /plugin/lang/scala.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/lang/scala.fnl -------------------------------------------------------------------------------- /plugin/lang/ts_err.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/lang/ts_err.fnl -------------------------------------------------------------------------------- /plugin/other/neovide.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/other/neovide.fnl -------------------------------------------------------------------------------- /plugin/util/colorizer.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/util/colorizer.fnl -------------------------------------------------------------------------------- /plugin/util/package_info.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/util/package_info.fnl -------------------------------------------------------------------------------- /plugin/util/picker.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/util/picker.fnl -------------------------------------------------------------------------------- /plugin/util/pqf.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/util/pqf.fnl -------------------------------------------------------------------------------- /plugin/util/term.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/util/term.fnl -------------------------------------------------------------------------------- /plugin/util/trim.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/plugin/util/trim.fnl -------------------------------------------------------------------------------- /queries/fennel/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/queries/fennel/highlights.scm -------------------------------------------------------------------------------- /queries/scala/injections.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexaandru/nvim-config/HEAD/queries/scala/injections.scm --------------------------------------------------------------------------------