Compare commits
7 Commits
gitea/mast
...
c160fcbf55
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c160fcbf55 | ||
|
|
196d590348 | ||
|
|
5b543d5783 | ||
|
|
a06aceb75f | ||
|
|
4b99343853 | ||
|
|
b13a1f5045 | ||
|
|
c480aefa9f |
@@ -1,5 +1,5 @@
|
|||||||
! High DPI Settings for Window Managers
|
! High DPI Settings for Window Managers
|
||||||
!Xft.dpi: 192
|
Xft.dpi: 192
|
||||||
#include ".theme.xresources"
|
#include ".theme.xresources"
|
||||||
|
|
||||||
font: monospace:12
|
font: monospace:12
|
||||||
|
|||||||
@@ -1,8 +1,16 @@
|
|||||||
export PATH="${PATH}:$HOME/.scripts"
|
|
||||||
source ~/.profile
|
source ~/.profile
|
||||||
source ~/.bashrc
|
|
||||||
|
|
||||||
|
|
||||||
# Added by Toolbox App
|
# Added by Toolbox App
|
||||||
export PATH="$PATH:/home/mikec/.local/share/JetBrains/Toolbox/scripts"
|
export PATH="$PATH:/home/mikec/.local/share/JetBrains/Toolbox/scripts"
|
||||||
|
|
||||||
|
export PATH="${PATH}:$HOME/.scripts:$HOME/maple2022/bin:$HOME/intelFPGA_lite/18.1/quartus/bin:$HOME/intelFPGA_lite/18.1/modelsim_ase/bin"
|
||||||
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||||
|
export XDG_CURRENT_DESKTOP=sway
|
||||||
|
source ~/.bashrc
|
||||||
|
export QSYS_ROOTDIR="/home/mikec/intelFPGA_lite/18.1/quartus/sopc_builder/bin"
|
||||||
|
export VERSION_CONTROL="never"
|
||||||
|
|
||||||
|
# opam configuration
|
||||||
|
test -r /home/mikec/.opam/opam-init/init.sh && . /home/mikec/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true
|
||||||
|
|
||||||
|
# exec hilbish -S -l
|
||||||
|
|||||||
@@ -170,3 +170,5 @@ alias enter-dev='. enter-dev.sh'
|
|||||||
alias ssh='TERM="xterm-256color" ssh'
|
alias ssh='TERM="xterm-256color" ssh'
|
||||||
|
|
||||||
export DISABLE_TELEMETRY=YES
|
export DISABLE_TELEMETRY=YES
|
||||||
|
|
||||||
|
[ -f "/home/mikec/.ghcup/env" ] && . "/home/mikec/.ghcup/env" # ghcup-env
|
||||||
@@ -1,415 +0,0 @@
|
|||||||
snippet_support = true
|
|
||||||
verbosity = 2
|
|
||||||
|
|
||||||
[server]
|
|
||||||
# exit session if no requests were received during given period in seconds
|
|
||||||
# works only in unix sockets mode (-s/--session)
|
|
||||||
# set to 0 to disable
|
|
||||||
timeout = 1800 # seconds = 30 minutes
|
|
||||||
|
|
||||||
[language.bash]
|
|
||||||
filetypes = ["sh"]
|
|
||||||
roots = [".git", ".hg"]
|
|
||||||
command = "bash-language-server"
|
|
||||||
args = ["start"]
|
|
||||||
|
|
||||||
[language.c_cpp]
|
|
||||||
filetypes = ["c", "cpp"]
|
|
||||||
roots = ["compile_commands.json", ".clangd", ".git", ".hg"]
|
|
||||||
command = "clangd"
|
|
||||||
|
|
||||||
[language.crystal]
|
|
||||||
filetypes = ["crystal"]
|
|
||||||
roots = ["shard.yml"]
|
|
||||||
command = "scry"
|
|
||||||
|
|
||||||
[language.css]
|
|
||||||
filetypes = ["css"]
|
|
||||||
roots = ["package.json", ".git", ".hg"]
|
|
||||||
command = "vscode-css-languageserver"
|
|
||||||
args = ["--stdio"]
|
|
||||||
|
|
||||||
[language.less]
|
|
||||||
filetypes = ["less"]
|
|
||||||
roots = ["package.json", ".git", ".hg"]
|
|
||||||
command = "vscode-css-languageserver"
|
|
||||||
args = ["--stdio"]
|
|
||||||
|
|
||||||
[language.scss]
|
|
||||||
filetypes = ["scss"]
|
|
||||||
roots = ["package.json", ".git", ".hg"]
|
|
||||||
command = "vscode-css-languageserver"
|
|
||||||
args = ["--stdio"]
|
|
||||||
|
|
||||||
[language.d]
|
|
||||||
filetypes = ["d", "di"]
|
|
||||||
roots = [".git", "dub.sdl", "dub.json"]
|
|
||||||
command = "serve-d"
|
|
||||||
|
|
||||||
[language.dart]
|
|
||||||
# start shell to find path to dart analysis server source
|
|
||||||
filetypes = ["dart"]
|
|
||||||
roots = ["pubspec.yaml", ".git", ".hg"]
|
|
||||||
command = "sh"
|
|
||||||
args = ["-c", "dart $(dirname $(command -v dart))/snapshots/analysis_server.dart.snapshot --lsp"]
|
|
||||||
|
|
||||||
[language.elixir]
|
|
||||||
filetypes = ["elixir"]
|
|
||||||
roots = ["mix.exs"]
|
|
||||||
command = "elixir-ls"
|
|
||||||
settings_section = "elixirLS"
|
|
||||||
[language.elixir.settings.elixirLS]
|
|
||||||
# See https://github.com/elixir-lsp/elixir-ls/blob/master/apps/language_server/lib/language_server/server.ex
|
|
||||||
# dialyzerEnable = true
|
|
||||||
|
|
||||||
[language.elm]
|
|
||||||
filetypes = ["elm"]
|
|
||||||
roots = ["elm.json"]
|
|
||||||
command = "elm-language-server"
|
|
||||||
args = ["--stdio"]
|
|
||||||
settings_section = "elmLS"
|
|
||||||
[language.elm.settings.elmLS]
|
|
||||||
# See https://github.com/elm-tooling/elm-language-server#server-settings
|
|
||||||
runtime = "node"
|
|
||||||
elmPath = "elm"
|
|
||||||
elmFormatPath = "elm-format"
|
|
||||||
elmTestPath = "elm-test"
|
|
||||||
|
|
||||||
[language.erlang]
|
|
||||||
filetypes = ["erlang"]
|
|
||||||
# See https://github.com/erlang-ls/erlang_ls.git for more information and
|
|
||||||
# how to configure. This default config should work in most cases though.
|
|
||||||
roots = ["rebar.config", "erlang.mk", ".git", ".hg"]
|
|
||||||
command = "erlang_ls"
|
|
||||||
|
|
||||||
[language.go]
|
|
||||||
filetypes = ["go"]
|
|
||||||
roots = ["Gopkg.toml", "go.mod", ".git", ".hg"]
|
|
||||||
command = "gopls"
|
|
||||||
settings_section = "gopls"
|
|
||||||
[language.go.settings.gopls]
|
|
||||||
# See https://github.com/golang/tools/blob/master/gopls/doc/settings.md
|
|
||||||
# "build.buildFlags" = []
|
|
||||||
|
|
||||||
[language.haskell]
|
|
||||||
filetypes = ["haskell"]
|
|
||||||
roots = ["Setup.hs", "stack.yaml", "*.cabal"]
|
|
||||||
command = "haskell-language-server-wrapper"
|
|
||||||
args = ["--lsp"]
|
|
||||||
settings_section = "haskell"
|
|
||||||
[language.haskell.settings.haskell]
|
|
||||||
# See https://haskell-language-server.readthedocs.io/en/latest/configuration.html
|
|
||||||
# formattingProvider = "ormolu"
|
|
||||||
|
|
||||||
[language.html]
|
|
||||||
filetypes = ["html"]
|
|
||||||
roots = ["package.json"]
|
|
||||||
command = "vscode-html-languageserver"
|
|
||||||
args = ["--stdio"]
|
|
||||||
|
|
||||||
# # Commented out by default because you still need to set the paths in the JDT
|
|
||||||
# # Language Server arguments below before this can become a valid configuration.
|
|
||||||
[language.java]
|
|
||||||
filetypes = ["java"]
|
|
||||||
roots = [".git", "mvnw", "gradlew"]
|
|
||||||
command = "jdtls"
|
|
||||||
# args = [
|
|
||||||
# "-Declipse.application=org.eclipse.jdt.ls.core.id1",
|
|
||||||
# "-Dosgi.bundles.defaultStartLevel=4",
|
|
||||||
# "-Declipse.product=org.eclipse.jdt.ls.core.product",
|
|
||||||
# "-Dlog.level=ALL",
|
|
||||||
# "-Dfile.encoding=utf-8",
|
|
||||||
# "--add-modules=ALL-SYSTEM",
|
|
||||||
# "--add-opens",
|
|
||||||
# "java.base/java.util=ALL-UNNAMED",
|
|
||||||
# "--add-opens",
|
|
||||||
# "java.base/java.lang=ALL-UNNAMED",
|
|
||||||
# "-noverify",
|
|
||||||
# "-Xmx1G",
|
|
||||||
# "-jar",
|
|
||||||
# "/usr/share/java/jdtls/plugins/org.eclipse.equinox.launcher_1.6.900.v20240613-2009.jar"
|
|
||||||
# "-configuration",
|
|
||||||
# "/usr/share/jdtls/config_linux",
|
|
||||||
# "-data",
|
|
||||||
# # "/path/to/eclipse-workspace",
|
|
||||||
# ]
|
|
||||||
# [language.java.settings]
|
|
||||||
# # See https://github.dev/eclipse/eclipse.jdt.ls
|
|
||||||
# # "java.format.insertSpaces" = true
|
|
||||||
|
|
||||||
[language.javascript]
|
|
||||||
filetypes = ["javascript"]
|
|
||||||
roots = [".flowconfig"]
|
|
||||||
command = "flow"
|
|
||||||
args = ["lsp"]
|
|
||||||
|
|
||||||
[language.json]
|
|
||||||
filetypes = ["json"]
|
|
||||||
roots = ["package.json"]
|
|
||||||
command = "json-languageserver"
|
|
||||||
args = ["--stdio"]
|
|
||||||
|
|
||||||
# Requires Julia packages "LanguageServer", "StaticLint" and "SymbolServer"
|
|
||||||
[language.julia]
|
|
||||||
filetypes = ["julia"]
|
|
||||||
roots = ["Project.toml", ".git", ".hg"]
|
|
||||||
command = "julia"
|
|
||||||
args = [
|
|
||||||
"--startup-file=no",
|
|
||||||
"--history-file=no",
|
|
||||||
"-e",
|
|
||||||
"""
|
|
||||||
using LanguageServer;
|
|
||||||
using Pkg;
|
|
||||||
import StaticLint;
|
|
||||||
import SymbolServer;
|
|
||||||
import REPL;
|
|
||||||
env_path = dirname(Pkg.Types.Context().env.project_file);
|
|
||||||
server = LanguageServer.LanguageServerInstance(stdin, stdout, env_path, "");
|
|
||||||
server.runlinter = true;
|
|
||||||
run(server);
|
|
||||||
""",
|
|
||||||
]
|
|
||||||
[language.julia.settings]
|
|
||||||
# See https://github.com/julia-vscode/LanguageServer.jl/blob/master/src/requests/workspace.jl
|
|
||||||
# Format options. See https://github.com/julia-vscode/DocumentFormat.jl/blob/master/src/DocumentFormat.jl
|
|
||||||
# "julia.format.indent" = 4
|
|
||||||
# Lint options. See https://github.com/julia-vscode/StaticLint.jl/blob/master/src/linting/checks.jl
|
|
||||||
# "julia.lint.call" = true
|
|
||||||
# Other options, see https://github.com/julia-vscode/LanguageServer.jl/blob/master/src/requests/workspace.jl
|
|
||||||
# "julia.lint.run" = "true"
|
|
||||||
|
|
||||||
[language.latex]
|
|
||||||
filetypes = ["latex"]
|
|
||||||
roots = [".git", ".hg"]
|
|
||||||
command = "texlab"
|
|
||||||
settings_section = "texlab"
|
|
||||||
[language.latex.settings.texlab]
|
|
||||||
# See https://github.com/latex-lsp/texlab/blob/master/docs/options.md
|
|
||||||
#
|
|
||||||
# Preview configuration for zathura with SyncTeX search.
|
|
||||||
# For other PDF viewers see https://github.com/latex-lsp/texlab/blob/master/docs/previewing.md
|
|
||||||
forwardSearch.executable = "zathura"
|
|
||||||
forwardSearch.args = [
|
|
||||||
"%p",
|
|
||||||
"--synctex-forward", # Support texlab-forward-search
|
|
||||||
"%l:1:%f",
|
|
||||||
"--synctex-editor-command", # Inverse search: use Control+Left-Mouse-Button to jump to source.
|
|
||||||
"""
|
|
||||||
sh -c '
|
|
||||||
echo "
|
|
||||||
evaluate-commands -client $kak_client %{
|
|
||||||
evaluate-commands -try-client %opt{jumpclient} %{
|
|
||||||
edit -- %{input} %{line}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
" | kak -p $kak_session
|
|
||||||
'
|
|
||||||
""",
|
|
||||||
]
|
|
||||||
|
|
||||||
[language.lua]
|
|
||||||
filetypes = ["lua"]
|
|
||||||
roots = [".git", ".hg"]
|
|
||||||
command = "lua-language-server"
|
|
||||||
[language.lua.settings.Lua]
|
|
||||||
# See https://github.com/sumneko/vscode-lua/blob/master/setting/schema.json
|
|
||||||
# diagnostics.enable = true
|
|
||||||
|
|
||||||
[language.nim]
|
|
||||||
filetypes = ["nim"]
|
|
||||||
roots = ["*.nimble", ".git", ".hg"]
|
|
||||||
command = "nimlangserver"
|
|
||||||
|
|
||||||
[language.nix]
|
|
||||||
filetypes = ["nix"]
|
|
||||||
roots = ["flake.nix", "shell.nix", ".git", ".hg"]
|
|
||||||
command = "rnix-lsp"
|
|
||||||
|
|
||||||
[language.ocaml]
|
|
||||||
filetypes = ["ocaml"]
|
|
||||||
roots = ["Makefile", "opam", "*.opam", "dune"]
|
|
||||||
command = "ocamllsp"
|
|
||||||
|
|
||||||
[language.php]
|
|
||||||
filetypes = ["php"]
|
|
||||||
roots = [".htaccess", "composer.json"]
|
|
||||||
command = "intelephense"
|
|
||||||
args = ["--stdio"]
|
|
||||||
settings_section = "intelephense"
|
|
||||||
[language.php.settings]
|
|
||||||
intelephense.storagePath = "/tmp/intelephense"
|
|
||||||
|
|
||||||
[language.python]
|
|
||||||
filetypes = ["python"]
|
|
||||||
roots = ["requirements.txt", "setup.py", ".git", ".hg"]
|
|
||||||
command = "pylsp"
|
|
||||||
settings_section = "_"
|
|
||||||
[language.python.settings._]
|
|
||||||
# See https://github.com/python-lsp/python-lsp-server#configuration
|
|
||||||
# pylsp.configurationSources = ["flake8"]
|
|
||||||
|
|
||||||
[language.r]
|
|
||||||
filetypes = ["r"]
|
|
||||||
roots = ["DESCRIPTION", ".git", ".hg"]
|
|
||||||
command = "R"
|
|
||||||
args = ["--slave", "-e", "languageserver::run()"]
|
|
||||||
|
|
||||||
[language.racket]
|
|
||||||
filetypes = ["racket"]
|
|
||||||
roots = ["info.rkt"]
|
|
||||||
command = "racket"
|
|
||||||
args = ["-l", "racket-langserver"]
|
|
||||||
|
|
||||||
[language.reason]
|
|
||||||
filetypes = ["reason"]
|
|
||||||
roots = ["package.json", "Makefile", ".git", ".hg"]
|
|
||||||
command = "ocamllsp"
|
|
||||||
|
|
||||||
[language.ruby]
|
|
||||||
filetypes = ["ruby"]
|
|
||||||
roots = ["Gemfile"]
|
|
||||||
command = "solargraph"
|
|
||||||
args = ["stdio"]
|
|
||||||
[language.ruby.settings]
|
|
||||||
# See https://github.com/castwide/solargraph/blob/master/lib/solargraph/language_server/host.rb
|
|
||||||
# "solargraph.completion" = true
|
|
||||||
|
|
||||||
[language.rust]
|
|
||||||
filetypes = ["rust"]
|
|
||||||
roots = ["Cargo.toml"]
|
|
||||||
command = "sh"
|
|
||||||
args = [
|
|
||||||
"-c",
|
|
||||||
"""
|
|
||||||
if path=$(rustup which rls 2>/dev/null); then
|
|
||||||
"$path"
|
|
||||||
else
|
|
||||||
rls
|
|
||||||
fi
|
|
||||||
""",
|
|
||||||
]
|
|
||||||
[language.rust.settings.rust]
|
|
||||||
# See https://github.com/rust-lang/rls#configuration
|
|
||||||
# features = []
|
|
||||||
|
|
||||||
# [language.rust]
|
|
||||||
# filetypes = ["rust"]
|
|
||||||
# roots = ["Cargo.toml"]
|
|
||||||
# command = "sh"
|
|
||||||
# args = [
|
|
||||||
# "-c",
|
|
||||||
# """
|
|
||||||
# if path=$(rustup which rust-analyzer 2>/dev/null); then
|
|
||||||
# "$path"
|
|
||||||
# else
|
|
||||||
# rust-analyzer
|
|
||||||
# fi
|
|
||||||
# """,
|
|
||||||
# ]
|
|
||||||
# settings_section = "rust-analyzer"
|
|
||||||
# [language.rust.settings.rust-analyzer]
|
|
||||||
# hoverActions.enable = false # kak-lsp doesn't support this at the moment
|
|
||||||
# # cargo.features = []
|
|
||||||
# # See https://rust-analyzer.github.io/manual.html#configuration
|
|
||||||
# # If you get 'unresolved proc macro' warnings, you have two options
|
|
||||||
# # 1. The safe choice is two disable the warning:
|
|
||||||
# diagnostics.disabled = ["unresolved-proc-macro"]
|
|
||||||
# # 2. Or you can opt-in for proc macro support
|
|
||||||
# procMacro.enable = true
|
|
||||||
# cargo.loadOutDirsFromCheck = true
|
|
||||||
# # See https://github.com/rust-analyzer/rust-analyzer/issues/6448
|
|
||||||
|
|
||||||
[language.terraform]
|
|
||||||
filetypes = ["terraform"]
|
|
||||||
roots = ["*.tf"]
|
|
||||||
command = "terraform-ls"
|
|
||||||
args = ["serve"]
|
|
||||||
[language.terraform.settings.terraform-ls]
|
|
||||||
# See https://github.com/hashicorp/terraform-ls/blob/main/docs/SETTINGS.md
|
|
||||||
# rootModulePaths = []
|
|
||||||
|
|
||||||
[language.typescript]
|
|
||||||
filetypes = ["typescript"]
|
|
||||||
roots = ["package.json", "tsconfig.json", ".git", ".hg"]
|
|
||||||
command = "typescript-language-server"
|
|
||||||
args = ["--stdio"]
|
|
||||||
|
|
||||||
# [language.typescript]
|
|
||||||
# filetypes = ["typescript"]
|
|
||||||
# roots = ["package.json", "tsconfig.json", ".git", ".hg"]
|
|
||||||
# command = "deno"
|
|
||||||
# args = ["lsp"]
|
|
||||||
# [language.typescript.settings.deno]
|
|
||||||
# enable = true
|
|
||||||
# lint = true
|
|
||||||
|
|
||||||
[language.yaml]
|
|
||||||
filetypes = ["yaml"]
|
|
||||||
roots = [".git", ".hg"]
|
|
||||||
command = "yaml-language-server"
|
|
||||||
args = ["--stdio"]
|
|
||||||
[language.yaml.settings]
|
|
||||||
# See https://github.com/redhat-developer/yaml-language-server#language-server-settings
|
|
||||||
# Defaults are at https://github.com/redhat-developer/yaml-language-server/blob/master/src/yamlSettings.ts
|
|
||||||
# yaml.format.enable = true
|
|
||||||
|
|
||||||
[language.zig]
|
|
||||||
filetypes = ["zig"]
|
|
||||||
roots = ["build.zig"]
|
|
||||||
command = "zls"
|
|
||||||
|
|
||||||
# Semantic tokens support
|
|
||||||
# See https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_semanticTokens
|
|
||||||
# for the default list of tokens and modifiers.
|
|
||||||
# However, many language servers implement their own values.
|
|
||||||
# Make sure to check the output of `lsp-capabilities` and each server's documentation and source code as well.
|
|
||||||
# Examples:
|
|
||||||
# - TypeScript: https://github.com/microsoft/vscode-languageserver-node/blob/2645fb54ea1e764aff71dee0ecc8aceff3aabf56/client/src/common/semanticTokens.ts#L58
|
|
||||||
# - Rust Analyzer: https://github.com/rust-analyzer/rust-analyzer/blob/f6da603c7fe56c19a275dc7bab1f30fe1ad39707/crates/ide/src/syntax_highlighting.rs#L42
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "comment"
|
|
||||||
face = "documentation"
|
|
||||||
modifiers = ["documentation"]
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "comment"
|
|
||||||
face = "comment"
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "function"
|
|
||||||
face = "function"
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "keyword"
|
|
||||||
face = "keyword"
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "namespace"
|
|
||||||
face = "module"
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "operator"
|
|
||||||
face = "operator"
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "string"
|
|
||||||
face = "string"
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "type"
|
|
||||||
face = "type"
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "variable"
|
|
||||||
face = "default+d"
|
|
||||||
modifiers = ["readonly"]
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "variable"
|
|
||||||
face = "default+d"
|
|
||||||
modifiers = ["constant"]
|
|
||||||
|
|
||||||
[[semantic_tokens]]
|
|
||||||
token = "variable"
|
|
||||||
face = "variable"
|
|
||||||
1440
config/.config/kak-tree-sitter/config.toml
Normal file
1440
config/.config/kak-tree-sitter/config.toml
Normal file
File diff suppressed because it is too large
Load Diff
@@ -34,7 +34,7 @@ plug "tinted-theming/base16-kakoune"
|
|||||||
|
|
||||||
## Treesitter ##
|
## Treesitter ##
|
||||||
|
|
||||||
eval %sh{ kak-tree-sitter -dks --with-highlighting --with-text-objects --session $kak_session }
|
eval %sh{ kak-tree-sitter -dks --with-highlighting --with-text-objects --init $kak_session }
|
||||||
#eval %sh{ kak-tree-sitter -dks --with-text-objects --session $kak_session }
|
#eval %sh{ kak-tree-sitter -dks --with-text-objects --session $kak_session }
|
||||||
#eval %sh{ kak-tree-sitter -dks --with-highlighting --session $kak_session }
|
#eval %sh{ kak-tree-sitter -dks --with-highlighting --session $kak_session }
|
||||||
|
|
||||||
@@ -48,6 +48,9 @@ add-highlighter global/ show-matching
|
|||||||
add-highlighter global/ column 80 MenuForeground
|
add-highlighter global/ column 80 MenuForeground
|
||||||
add-highlighter global/ show-whitespaces
|
add-highlighter global/ show-whitespaces
|
||||||
|
|
||||||
|
## Wrapping ##
|
||||||
|
|
||||||
|
add-highlighter global/ wrap -word -indent
|
||||||
## Formatting ##
|
## Formatting ##
|
||||||
define-command enable-autofmt -docstring 'enable autoformatting of buffer' %{
|
define-command enable-autofmt -docstring 'enable autoformatting of buffer' %{
|
||||||
|
|
||||||
|
|||||||
@@ -4,3 +4,4 @@ source /home/mikec/.config/mutt/accounts/mikecchalupiak@outlook.com.muttrc
|
|||||||
macro index,pager i1 '<sync-mailbox><enter-command>source /home/mikec/.config/mutt/accounts/mikecchalupiak@outlook.com.muttrc<enter><change-folder>!<enter>;<check-stats>' "switch to mikecchalupiak@outlook.com"
|
macro index,pager i1 '<sync-mailbox><enter-command>source /home/mikec/.config/mutt/accounts/mikecchalupiak@outlook.com.muttrc<enter><change-folder>!<enter>;<check-stats>' "switch to mikecchalupiak@outlook.com"
|
||||||
macro index,pager i2 '<sync-mailbox><enter-command>source /home/mikec/.config/mutt/accounts/chalupmc@rose-hulman.edu.muttrc<enter><change-folder>!<enter>;<check-stats>' "switch to chalupmc@rose-hulman.edu"
|
macro index,pager i2 '<sync-mailbox><enter-command>source /home/mikec/.config/mutt/accounts/chalupmc@rose-hulman.edu.muttrc<enter><change-folder>!<enter>;<check-stats>' "switch to chalupmc@rose-hulman.edu"
|
||||||
macro index,pager i3 '<sync-mailbox><enter-command>source /home/mikec/.config/mutt/accounts/mikec@mchalupiak.com.muttrc<enter><change-folder>!<enter>;<check-stats>' "switch to mikec@mchalupiak.com"
|
macro index,pager i3 '<sync-mailbox><enter-command>source /home/mikec/.config/mutt/accounts/mikec@mchalupiak.com.muttrc<enter><change-folder>!<enter>;<check-stats>' "switch to mikec@mchalupiak.com"
|
||||||
|
set use_threads=reverse sort=last-date
|
||||||
|
|||||||
@@ -1,660 +0,0 @@
|
|||||||
-- Automatically generated packer.nvim plugin loader code
|
|
||||||
|
|
||||||
if vim.api.nvim_call_function('has', {'nvim-0.5'}) ~= 1 then
|
|
||||||
vim.api.nvim_command('echohl WarningMsg | echom "Invalid Neovim version for packer.nvim! | echohl None"')
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
vim.api.nvim_command('packadd packer.nvim')
|
|
||||||
|
|
||||||
local no_errors, error_msg = pcall(function()
|
|
||||||
|
|
||||||
_G._packer = _G._packer or {}
|
|
||||||
_G._packer.inside_compile = true
|
|
||||||
|
|
||||||
local time
|
|
||||||
local profile_info
|
|
||||||
local should_profile = false
|
|
||||||
if should_profile then
|
|
||||||
local hrtime = vim.loop.hrtime
|
|
||||||
profile_info = {}
|
|
||||||
time = function(chunk, start)
|
|
||||||
if start then
|
|
||||||
profile_info[chunk] = hrtime()
|
|
||||||
else
|
|
||||||
profile_info[chunk] = (hrtime() - profile_info[chunk]) / 1e6
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
|
||||||
time = function(chunk, start) end
|
|
||||||
end
|
|
||||||
|
|
||||||
local function save_profiles(threshold)
|
|
||||||
local sorted_times = {}
|
|
||||||
for chunk_name, time_taken in pairs(profile_info) do
|
|
||||||
sorted_times[#sorted_times + 1] = {chunk_name, time_taken}
|
|
||||||
end
|
|
||||||
table.sort(sorted_times, function(a, b) return a[2] > b[2] end)
|
|
||||||
local results = {}
|
|
||||||
for i, elem in ipairs(sorted_times) do
|
|
||||||
if not threshold or threshold and elem[2] > threshold then
|
|
||||||
results[i] = elem[1] .. ' took ' .. elem[2] .. 'ms'
|
|
||||||
end
|
|
||||||
end
|
|
||||||
if threshold then
|
|
||||||
table.insert(results, '(Only showing plugins that took longer than ' .. threshold .. ' ms ' .. 'to load)')
|
|
||||||
end
|
|
||||||
|
|
||||||
_G._packer.profile_output = results
|
|
||||||
end
|
|
||||||
|
|
||||||
time([[Luarocks path setup]], true)
|
|
||||||
local package_path_str = "/home/mikec/.cache/nvim/packer_hererocks/2.1.1723675123/share/lua/5.1/?.lua;/home/mikec/.cache/nvim/packer_hererocks/2.1.1723675123/share/lua/5.1/?/init.lua;/home/mikec/.cache/nvim/packer_hererocks/2.1.1723675123/lib/luarocks/rocks-5.1/?.lua;/home/mikec/.cache/nvim/packer_hererocks/2.1.1723675123/lib/luarocks/rocks-5.1/?/init.lua"
|
|
||||||
local install_cpath_pattern = "/home/mikec/.cache/nvim/packer_hererocks/2.1.1723675123/lib/lua/5.1/?.so"
|
|
||||||
if not string.find(package.path, package_path_str, 1, true) then
|
|
||||||
package.path = package.path .. ';' .. package_path_str
|
|
||||||
end
|
|
||||||
|
|
||||||
if not string.find(package.cpath, install_cpath_pattern, 1, true) then
|
|
||||||
package.cpath = package.cpath .. ';' .. install_cpath_pattern
|
|
||||||
end
|
|
||||||
|
|
||||||
time([[Luarocks path setup]], false)
|
|
||||||
time([[try_loadstring definition]], true)
|
|
||||||
local function try_loadstring(s, component, name)
|
|
||||||
local success, result = pcall(loadstring(s), name, _G.packer_plugins[name])
|
|
||||||
if not success then
|
|
||||||
vim.schedule(function()
|
|
||||||
vim.api.nvim_notify('packer.nvim: Error running ' .. component .. ' for ' .. name .. ': ' .. result, vim.log.levels.ERROR, {})
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
return result
|
|
||||||
end
|
|
||||||
|
|
||||||
time([[try_loadstring definition]], false)
|
|
||||||
time([[Defining packer_plugins]], true)
|
|
||||||
_G.packer_plugins = {
|
|
||||||
["Comment.nvim"] = {
|
|
||||||
config = { "\27LJ\2\n5\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\fComment\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/Comment.nvim",
|
|
||||||
url = "https://github.com/numToStr/Comment.nvim"
|
|
||||||
},
|
|
||||||
LuaSnip = {
|
|
||||||
config = { "\27LJ\2\nM\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\14lazy_load luasnip.loaders.from_vscode\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/LuaSnip",
|
|
||||||
url = "https://github.com/L3MON4D3/LuaSnip"
|
|
||||||
},
|
|
||||||
["alpha-nvim"] = {
|
|
||||||
config = { "\27LJ\2\n`\0\0\5\0\5\0\n6\0\0\0'\2\1\0B\0\2\0029\0\2\0006\2\0\0'\4\3\0B\2\2\0029\2\4\2B\0\2\1K\0\1\0\vconfig\26alpha.themes.startify\nsetup\nalpha\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/alpha-nvim",
|
|
||||||
url = "https://github.com/goolord/alpha-nvim"
|
|
||||||
},
|
|
||||||
["barbecue.nvim"] = {
|
|
||||||
config = { "\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\rbarbecue\frequire\0" },
|
|
||||||
load_after = {},
|
|
||||||
loaded = true,
|
|
||||||
needs_bufread = false,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/opt/barbecue.nvim",
|
|
||||||
url = "https://github.com/utilyre/barbecue.nvim"
|
|
||||||
},
|
|
||||||
catppuccin = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/catppuccin",
|
|
||||||
url = "https://github.com/catppuccin/nvim"
|
|
||||||
},
|
|
||||||
["ccc.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/ccc.nvim",
|
|
||||||
url = "https://github.com/uga-rosa/ccc.nvim"
|
|
||||||
},
|
|
||||||
["cellular-automaton.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/cellular-automaton.nvim",
|
|
||||||
url = "https://github.com/eandrju/cellular-automaton.nvim"
|
|
||||||
},
|
|
||||||
["cmd-parser.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/cmd-parser.nvim",
|
|
||||||
url = "https://github.com/winston0410/cmd-parser.nvim"
|
|
||||||
},
|
|
||||||
["cmp-buffer"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/cmp-buffer",
|
|
||||||
url = "https://github.com/hrsh7th/cmp-buffer"
|
|
||||||
},
|
|
||||||
["cmp-nvim-lsp"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp",
|
|
||||||
url = "https://github.com/hrsh7th/cmp-nvim-lsp"
|
|
||||||
},
|
|
||||||
["cmp-nvim-lsp-signature-help"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp-signature-help",
|
|
||||||
url = "https://github.com/hrsh7th/cmp-nvim-lsp-signature-help"
|
|
||||||
},
|
|
||||||
["cmp-nvim-lua"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/cmp-nvim-lua",
|
|
||||||
url = "https://github.com/hrsh7th/cmp-nvim-lua"
|
|
||||||
},
|
|
||||||
["cmp-path"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/cmp-path",
|
|
||||||
url = "https://github.com/hrsh7th/cmp-path"
|
|
||||||
},
|
|
||||||
cmp_luasnip = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/cmp_luasnip",
|
|
||||||
url = "https://github.com/saadparwaiz1/cmp_luasnip"
|
|
||||||
},
|
|
||||||
["compiler-explorer.nvim"] = {
|
|
||||||
config = { "\27LJ\2\nx\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\fautocmd\1\0\1\fautocmd\0\1\0\2\ahl\15Cursorline\venable\2\nsetup\22compiler-explorer\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/compiler-explorer.nvim",
|
|
||||||
url = "https://github.com/krady21/compiler-explorer.nvim"
|
|
||||||
},
|
|
||||||
["dim.lua"] = {
|
|
||||||
config = { "\27LJ\2\n5\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\bdim\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/dim.lua",
|
|
||||||
url = "https://github.com/0oAstro/dim.lua"
|
|
||||||
},
|
|
||||||
["dracula.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/dracula.nvim",
|
|
||||||
url = "https://github.com/Mofiqul/dracula.nvim"
|
|
||||||
},
|
|
||||||
["dressing.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/dressing.nvim",
|
|
||||||
url = "https://github.com/stevearc/dressing.nvim"
|
|
||||||
},
|
|
||||||
everblush = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/everblush",
|
|
||||||
url = "https://github.com/Everblush/nvim"
|
|
||||||
},
|
|
||||||
everforest = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/everforest",
|
|
||||||
url = "https://github.com/sainnhe/everforest"
|
|
||||||
},
|
|
||||||
["fennel.vim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/fennel.vim",
|
|
||||||
url = "https://github.com/jaawerth/fennel.vim"
|
|
||||||
},
|
|
||||||
["friendly-snippets"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/friendly-snippets",
|
|
||||||
url = "https://github.com/rafamadriz/friendly-snippets"
|
|
||||||
},
|
|
||||||
["github-colors"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/github-colors",
|
|
||||||
url = "https://github.com/lourenci/github-colors"
|
|
||||||
},
|
|
||||||
["github-nvim-theme"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/github-nvim-theme",
|
|
||||||
url = "https://github.com/projekt0n/github-nvim-theme"
|
|
||||||
},
|
|
||||||
["gitsigns.nvim"] = {
|
|
||||||
config = { "\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\rgitsigns\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/gitsigns.nvim",
|
|
||||||
url = "https://github.com/lewis6991/gitsigns.nvim"
|
|
||||||
},
|
|
||||||
["gruvbox-material"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/gruvbox-material",
|
|
||||||
url = "https://github.com/sainnhe/gruvbox-material"
|
|
||||||
},
|
|
||||||
["gruvbox.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/gruvbox.nvim",
|
|
||||||
url = "https://github.com/ellisonleao/gruvbox.nvim"
|
|
||||||
},
|
|
||||||
["indent-blankline.nvim"] = {
|
|
||||||
config = { "\27LJ\2\nY\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\nscope\1\0\1\nscope\0\1\0\1\fenabled\1\nsetup\bibl\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/indent-blankline.nvim",
|
|
||||||
url = "https://github.com/lukas-reineke/indent-blankline.nvim"
|
|
||||||
},
|
|
||||||
["leap.nvim"] = {
|
|
||||||
config = { "\27LJ\2\nA\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\25add_default_mappings\tleap\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/leap.nvim",
|
|
||||||
url = "https://github.com/ggandor/leap.nvim"
|
|
||||||
},
|
|
||||||
["lsp-zero.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/lsp-zero.nvim",
|
|
||||||
url = "https://github.com/VonHeikemen/lsp-zero.nvim"
|
|
||||||
},
|
|
||||||
["lualine.nvim"] = {
|
|
||||||
config = { "\27LJ\2\nº\1\0\0\n\0\f\0\0254\0\0\0006\1\0\0006\3\1\0009\3\2\0039\3\3\0035\5\4\0B\3\2\0A\1\0\4H\4\5€6\6\5\0009\6\6\6\18\b\0\0009\t\a\5B\6\3\1F\4\3\3R\4ù\127'\1\b\0006\2\5\0009\2\t\2\18\4\0\0'\5\n\0B\2\3\2'\3\v\0&\1\3\1L\1\2\0\6]\6 \vconcat\nï<EFBFBD>£ [\tname\vinsert\ntable\1\0\1\nbufnr\3\0\23get_active_clients\blsp\bvim\npairsÈ\5\1\0\b\0\29\0'3\0\0\0006\1\1\0'\3\2\0B\1\2\0029\1\3\0015\3\t\0005\4\4\0005\5\5\0=\5\6\0045\5\a\0=\5\b\4=\4\n\0035\4\14\0004\5\3\0005\6\v\0005\a\f\0=\a\r\6>\6\1\5=\5\15\0044\5\0\0=\5\16\0045\5\17\0=\5\18\0045\5\20\0>\0\1\0055\6\19\0>\6\2\5=\5\21\0045\5\22\0=\5\23\0045\5\24\0005\6\25\0005\a\26\0=\a\r\6>\6\2\5=\5\27\4=\4\28\3B\1\2\1K\0\1\0\rsections\14lualine_z\1\0\2\nright\bî‚´\tleft\bî‚¶\1\2\1\0\rprogress\14separator\0\1\2\0\0\rlocation\14lualine_y\1\4\0\0\rencoding\15fileformat\rfiletype\14lualine_x\1\5\0\0\0\0\vbranch\tdiff\1\2\1\0\16diagnostics\18icons_enabled\2\14lualine_c\1\2\0\0\rfilename\14lualine_b\14lualine_a\1\0\6\14lualine_x\0\14lualine_z\0\14lualine_c\0\14lualine_b\0\14lualine_a\0\14lualine_y\0\14separator\1\0\2\nright\bî‚´\tleft\bî‚¶\1\2\1\0\tmode\14separator\0\foptions\1\0\2\rsections\0\foptions\0\25component_separators\1\0\2\nright\5\tleft\5\23section_separators\1\0\2\nright\bî‚¶\tleft\bî‚´\1\0\4\23section_separators\0\18icons_enabled\1\17globalstatus\2\25component_separators\0\nsetup\flualine\frequire\0\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/lualine.nvim",
|
|
||||||
url = "https://github.com/nvim-lualine/lualine.nvim"
|
|
||||||
},
|
|
||||||
["mason-lspconfig.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/mason-lspconfig.nvim",
|
|
||||||
url = "https://github.com/williamboman/mason-lspconfig.nvim"
|
|
||||||
},
|
|
||||||
["mason.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/mason.nvim",
|
|
||||||
url = "https://github.com/williamboman/mason.nvim"
|
|
||||||
},
|
|
||||||
["melange-nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/melange-nvim",
|
|
||||||
url = "https://github.com/savq/melange-nvim"
|
|
||||||
},
|
|
||||||
["mellow.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/mellow.nvim",
|
|
||||||
url = "https://github.com/kvrohit/mellow.nvim"
|
|
||||||
},
|
|
||||||
["monochrome.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/monochrome.nvim",
|
|
||||||
url = "https://github.com/kdheepak/monochrome.nvim"
|
|
||||||
},
|
|
||||||
["monokai.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/monokai.nvim",
|
|
||||||
url = "https://github.com/tanvirtin/monokai.nvim"
|
|
||||||
},
|
|
||||||
["moonlight.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/moonlight.nvim",
|
|
||||||
url = "https://github.com/shaunsingh/moonlight.nvim"
|
|
||||||
},
|
|
||||||
["moonscript-vim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/moonscript-vim",
|
|
||||||
url = "https://github.com/leafo/moonscript-vim"
|
|
||||||
},
|
|
||||||
["nabla.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nabla.nvim",
|
|
||||||
url = "https://github.com/jbyuki/nabla.nvim"
|
|
||||||
},
|
|
||||||
["nelua.vim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nelua.vim",
|
|
||||||
url = "https://github.com/stefanos82/nelua.vim"
|
|
||||||
},
|
|
||||||
["neodev.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/neodev.nvim",
|
|
||||||
url = "https://github.com/folke/neodev.nvim"
|
|
||||||
},
|
|
||||||
["nord.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nord.nvim",
|
|
||||||
url = "https://github.com/shaunsingh/nord.nvim"
|
|
||||||
},
|
|
||||||
["nvim-blame-line"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-blame-line",
|
|
||||||
url = "https://github.com/tveskag/nvim-blame-line"
|
|
||||||
},
|
|
||||||
["nvim-cmp"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-cmp",
|
|
||||||
url = "https://github.com/hrsh7th/nvim-cmp"
|
|
||||||
},
|
|
||||||
["nvim-dap"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-dap",
|
|
||||||
url = "https://github.com/mfussenegger/nvim-dap"
|
|
||||||
},
|
|
||||||
["nvim-dap-ui"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-dap-ui",
|
|
||||||
url = "https://github.com/rcarriga/nvim-dap-ui"
|
|
||||||
},
|
|
||||||
["nvim-jdtls"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-jdtls",
|
|
||||||
url = "https://github.com/mfussenegger/nvim-jdtls"
|
|
||||||
},
|
|
||||||
["nvim-lspconfig"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-lspconfig",
|
|
||||||
url = "https://github.com/neovim/nvim-lspconfig"
|
|
||||||
},
|
|
||||||
["nvim-navic"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-navic",
|
|
||||||
url = "https://github.com/SmiteshP/nvim-navic"
|
|
||||||
},
|
|
||||||
["nvim-surround"] = {
|
|
||||||
config = { "\27LJ\2\n?\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\18nvim-surround\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-surround",
|
|
||||||
url = "https://github.com/kylechui/nvim-surround"
|
|
||||||
},
|
|
||||||
["nvim-treesitter"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
|
|
||||||
url = "https://github.com/nvim-treesitter/nvim-treesitter"
|
|
||||||
},
|
|
||||||
["nvim-ts-autotag"] = {
|
|
||||||
config = { "\27LJ\2\n=\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\20nvim-ts-autotag\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-ts-autotag",
|
|
||||||
url = "https://github.com/windwp/nvim-ts-autotag"
|
|
||||||
},
|
|
||||||
["nvim-unception"] = {
|
|
||||||
loaded = true,
|
|
||||||
needs_bufread = false,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/opt/nvim-unception",
|
|
||||||
url = "https://github.com/samjwill/nvim-unception"
|
|
||||||
},
|
|
||||||
["nvim-web-devicons"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
|
|
||||||
url = "https://github.com/nvim-tree/nvim-web-devicons"
|
|
||||||
},
|
|
||||||
["oceanic-next"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/oceanic-next",
|
|
||||||
url = "https://github.com/mhartington/oceanic-next"
|
|
||||||
},
|
|
||||||
["one-nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/one-nvim",
|
|
||||||
url = "https://github.com/Th3Whit3Wolf/one-nvim"
|
|
||||||
},
|
|
||||||
["onedark.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/onedark.nvim",
|
|
||||||
url = "https://github.com/navarasu/onedark.nvim"
|
|
||||||
},
|
|
||||||
["packer.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/packer.nvim",
|
|
||||||
url = "https://github.com/wbthomason/packer.nvim"
|
|
||||||
},
|
|
||||||
["plantuml-syntax"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/plantuml-syntax",
|
|
||||||
url = "https://github.com/aklt/plantuml-syntax"
|
|
||||||
},
|
|
||||||
playground = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/playground",
|
|
||||||
url = "https://github.com/nvim-treesitter/playground"
|
|
||||||
},
|
|
||||||
["plenary.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/plenary.nvim",
|
|
||||||
url = "https://github.com/nvim-lua/plenary.nvim"
|
|
||||||
},
|
|
||||||
["range-highlight.nvim"] = {
|
|
||||||
config = { "\27LJ\2\nA\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\20range-highlight\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/range-highlight.nvim",
|
|
||||||
url = "https://github.com/winston0410/range-highlight.nvim"
|
|
||||||
},
|
|
||||||
["rose-pine"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/rose-pine",
|
|
||||||
url = "https://github.com/rose-pine/neovim"
|
|
||||||
},
|
|
||||||
["sherbet.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/sherbet.nvim",
|
|
||||||
url = "https://github.com/lewpoly/sherbet.nvim"
|
|
||||||
},
|
|
||||||
["telescope-recent-files"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/telescope-recent-files",
|
|
||||||
url = "https://github.com/smartpde/telescope-recent-files"
|
|
||||||
},
|
|
||||||
["telescope-tabs"] = {
|
|
||||||
config = { "\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19telescope-tabs\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/telescope-tabs",
|
|
||||||
url = "https://github.com/LukasPietzschmann/telescope-tabs"
|
|
||||||
},
|
|
||||||
["telescope.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/telescope.nvim",
|
|
||||||
url = "https://github.com/nvim-telescope/telescope.nvim"
|
|
||||||
},
|
|
||||||
["tokyonight.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/tokyonight.nvim",
|
|
||||||
url = "https://github.com/folke/tokyonight.nvim"
|
|
||||||
},
|
|
||||||
["twilight.nvim"] = {
|
|
||||||
config = { "\27LJ\2\n:\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\rtwilight\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/twilight.nvim",
|
|
||||||
url = "https://github.com/folke/twilight.nvim"
|
|
||||||
},
|
|
||||||
["v-vim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/v-vim",
|
|
||||||
url = "https://github.com/ollykel/v-vim"
|
|
||||||
},
|
|
||||||
["vim-colors-xcode"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/vim-colors-xcode",
|
|
||||||
url = "https://github.com/arzg/vim-colors-xcode"
|
|
||||||
},
|
|
||||||
["vim-dadbod"] = {
|
|
||||||
after = { "vim-dadbod-ui", "vim-dadbod-completion" },
|
|
||||||
commands = { "DBUIToggle", "DBUI", "DBUIAddConnection", "DBUIFindBuffer", "DBUIRenameBuffer", "DBUILastQueryInfo" },
|
|
||||||
config = { "\27LJ\2\n;\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\18config.dadbod\frequire\0" },
|
|
||||||
loaded = false,
|
|
||||||
needs_bufread = false,
|
|
||||||
only_cond = false,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/opt/vim-dadbod",
|
|
||||||
url = "https://github.com/tpope/vim-dadbod"
|
|
||||||
},
|
|
||||||
["vim-dadbod-completion"] = {
|
|
||||||
after_files = { "/home/mikec/.local/share/nvim/site/pack/packer/opt/vim-dadbod-completion/after/plugin/vim_dadbod_completion.lua", "/home/mikec/.local/share/nvim/site/pack/packer/opt/vim-dadbod-completion/after/plugin/vim_dadbod_completion.vim" },
|
|
||||||
load_after = {
|
|
||||||
["vim-dadbod"] = true
|
|
||||||
},
|
|
||||||
loaded = false,
|
|
||||||
needs_bufread = false,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/opt/vim-dadbod-completion",
|
|
||||||
url = "https://github.com/kristijanhusak/vim-dadbod-completion"
|
|
||||||
},
|
|
||||||
["vim-dadbod-ui"] = {
|
|
||||||
load_after = {
|
|
||||||
["vim-dadbod"] = true
|
|
||||||
},
|
|
||||||
loaded = false,
|
|
||||||
needs_bufread = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/opt/vim-dadbod-ui",
|
|
||||||
url = "https://github.com/kristijanhusak/vim-dadbod-ui"
|
|
||||||
},
|
|
||||||
["vim-etlua"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/vim-etlua",
|
|
||||||
url = "https://github.com/VaiN474/vim-etlua"
|
|
||||||
},
|
|
||||||
["vim-illuminate"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/vim-illuminate",
|
|
||||||
url = "https://github.com/RRethy/vim-illuminate"
|
|
||||||
},
|
|
||||||
["vim-teal"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/vim-teal",
|
|
||||||
url = "https://github.com/teal-language/vim-teal"
|
|
||||||
},
|
|
||||||
["vscode.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/vscode.nvim",
|
|
||||||
url = "https://github.com/Mofiqul/vscode.nvim"
|
|
||||||
},
|
|
||||||
["web-tools.nvim"] = {
|
|
||||||
config = { "\27LJ\2\n7\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\14web-tools\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/web-tools.nvim",
|
|
||||||
url = "https://github.com/ray-x/web-tools.nvim"
|
|
||||||
},
|
|
||||||
["workspaces.nvim"] = {
|
|
||||||
config = { "\27LJ\2\n8\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\15workspaces\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/home/mikec/.local/share/nvim/site/pack/packer/start/workspaces.nvim",
|
|
||||||
url = "https://github.com/natecraddock/workspaces.nvim"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
time([[Defining packer_plugins]], false)
|
|
||||||
-- Setup for: nvim-unception
|
|
||||||
time([[Setup for nvim-unception]], true)
|
|
||||||
try_loadstring("\27LJ\2\n\v\0\0\1\0\0\0\1K\0\1\0\0", "setup", "nvim-unception")
|
|
||||||
time([[Setup for nvim-unception]], false)
|
|
||||||
time([[packadd for nvim-unception]], true)
|
|
||||||
vim.cmd [[packadd nvim-unception]]
|
|
||||||
time([[packadd for nvim-unception]], false)
|
|
||||||
-- Config for: LuaSnip
|
|
||||||
time([[Config for LuaSnip]], true)
|
|
||||||
try_loadstring("\27LJ\2\nM\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\14lazy_load luasnip.loaders.from_vscode\frequire\0", "config", "LuaSnip")
|
|
||||||
time([[Config for LuaSnip]], false)
|
|
||||||
-- Config for: twilight.nvim
|
|
||||||
time([[Config for twilight.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n:\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\rtwilight\frequire\0", "config", "twilight.nvim")
|
|
||||||
time([[Config for twilight.nvim]], false)
|
|
||||||
-- Config for: alpha-nvim
|
|
||||||
time([[Config for alpha-nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n`\0\0\5\0\5\0\n6\0\0\0'\2\1\0B\0\2\0029\0\2\0006\2\0\0'\4\3\0B\2\2\0029\2\4\2B\0\2\1K\0\1\0\vconfig\26alpha.themes.startify\nsetup\nalpha\frequire\0", "config", "alpha-nvim")
|
|
||||||
time([[Config for alpha-nvim]], false)
|
|
||||||
-- Config for: nvim-ts-autotag
|
|
||||||
time([[Config for nvim-ts-autotag]], true)
|
|
||||||
try_loadstring("\27LJ\2\n=\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\20nvim-ts-autotag\frequire\0", "config", "nvim-ts-autotag")
|
|
||||||
time([[Config for nvim-ts-autotag]], false)
|
|
||||||
-- Config for: indent-blankline.nvim
|
|
||||||
time([[Config for indent-blankline.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\nY\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\nscope\1\0\1\nscope\0\1\0\1\fenabled\1\nsetup\bibl\frequire\0", "config", "indent-blankline.nvim")
|
|
||||||
time([[Config for indent-blankline.nvim]], false)
|
|
||||||
-- Config for: web-tools.nvim
|
|
||||||
time([[Config for web-tools.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n7\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\14web-tools\frequire\0", "config", "web-tools.nvim")
|
|
||||||
time([[Config for web-tools.nvim]], false)
|
|
||||||
-- Config for: leap.nvim
|
|
||||||
time([[Config for leap.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\nA\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\25add_default_mappings\tleap\frequire\0", "config", "leap.nvim")
|
|
||||||
time([[Config for leap.nvim]], false)
|
|
||||||
-- Config for: Comment.nvim
|
|
||||||
time([[Config for Comment.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n5\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\fComment\frequire\0", "config", "Comment.nvim")
|
|
||||||
time([[Config for Comment.nvim]], false)
|
|
||||||
-- Config for: nvim-surround
|
|
||||||
time([[Config for nvim-surround]], true)
|
|
||||||
try_loadstring("\27LJ\2\n?\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\18nvim-surround\frequire\0", "config", "nvim-surround")
|
|
||||||
time([[Config for nvim-surround]], false)
|
|
||||||
-- Config for: workspaces.nvim
|
|
||||||
time([[Config for workspaces.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n8\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\15workspaces\frequire\0", "config", "workspaces.nvim")
|
|
||||||
time([[Config for workspaces.nvim]], false)
|
|
||||||
-- Config for: gitsigns.nvim
|
|
||||||
time([[Config for gitsigns.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\rgitsigns\frequire\0", "config", "gitsigns.nvim")
|
|
||||||
time([[Config for gitsigns.nvim]], false)
|
|
||||||
-- Config for: compiler-explorer.nvim
|
|
||||||
time([[Config for compiler-explorer.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\nx\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\fautocmd\1\0\1\fautocmd\0\1\0\2\ahl\15Cursorline\venable\2\nsetup\22compiler-explorer\frequire\0", "config", "compiler-explorer.nvim")
|
|
||||||
time([[Config for compiler-explorer.nvim]], false)
|
|
||||||
-- Config for: range-highlight.nvim
|
|
||||||
time([[Config for range-highlight.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\nA\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\20range-highlight\frequire\0", "config", "range-highlight.nvim")
|
|
||||||
time([[Config for range-highlight.nvim]], false)
|
|
||||||
-- Config for: lualine.nvim
|
|
||||||
time([[Config for lualine.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\nº\1\0\0\n\0\f\0\0254\0\0\0006\1\0\0006\3\1\0009\3\2\0039\3\3\0035\5\4\0B\3\2\0A\1\0\4H\4\5€6\6\5\0009\6\6\6\18\b\0\0009\t\a\5B\6\3\1F\4\3\3R\4ù\127'\1\b\0006\2\5\0009\2\t\2\18\4\0\0'\5\n\0B\2\3\2'\3\v\0&\1\3\1L\1\2\0\6]\6 \vconcat\nï<EFBFBD>£ [\tname\vinsert\ntable\1\0\1\nbufnr\3\0\23get_active_clients\blsp\bvim\npairsÈ\5\1\0\b\0\29\0'3\0\0\0006\1\1\0'\3\2\0B\1\2\0029\1\3\0015\3\t\0005\4\4\0005\5\5\0=\5\6\0045\5\a\0=\5\b\4=\4\n\0035\4\14\0004\5\3\0005\6\v\0005\a\f\0=\a\r\6>\6\1\5=\5\15\0044\5\0\0=\5\16\0045\5\17\0=\5\18\0045\5\20\0>\0\1\0055\6\19\0>\6\2\5=\5\21\0045\5\22\0=\5\23\0045\5\24\0005\6\25\0005\a\26\0=\a\r\6>\6\2\5=\5\27\4=\4\28\3B\1\2\1K\0\1\0\rsections\14lualine_z\1\0\2\nright\bî‚´\tleft\bî‚¶\1\2\1\0\rprogress\14separator\0\1\2\0\0\rlocation\14lualine_y\1\4\0\0\rencoding\15fileformat\rfiletype\14lualine_x\1\5\0\0\0\0\vbranch\tdiff\1\2\1\0\16diagnostics\18icons_enabled\2\14lualine_c\1\2\0\0\rfilename\14lualine_b\14lualine_a\1\0\6\14lualine_x\0\14lualine_z\0\14lualine_c\0\14lualine_b\0\14lualine_a\0\14lualine_y\0\14separator\1\0\2\nright\bî‚´\tleft\bî‚¶\1\2\1\0\tmode\14separator\0\foptions\1\0\2\rsections\0\foptions\0\25component_separators\1\0\2\nright\5\tleft\5\23section_separators\1\0\2\nright\bî‚¶\tleft\bî‚´\1\0\4\23section_separators\0\18icons_enabled\1\17globalstatus\2\25component_separators\0\nsetup\flualine\frequire\0\0", "config", "lualine.nvim")
|
|
||||||
time([[Config for lualine.nvim]], false)
|
|
||||||
-- Config for: telescope-tabs
|
|
||||||
time([[Config for telescope-tabs]], true)
|
|
||||||
try_loadstring("\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19telescope-tabs\frequire\0", "config", "telescope-tabs")
|
|
||||||
time([[Config for telescope-tabs]], false)
|
|
||||||
-- Config for: dim.lua
|
|
||||||
time([[Config for dim.lua]], true)
|
|
||||||
try_loadstring("\27LJ\2\n5\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\bdim\frequire\0", "config", "dim.lua")
|
|
||||||
time([[Config for dim.lua]], false)
|
|
||||||
-- Load plugins in order defined by `after`
|
|
||||||
time([[Sequenced loading]], true)
|
|
||||||
vim.cmd [[ packadd nvim-web-devicons ]]
|
|
||||||
vim.cmd [[ packadd barbecue.nvim ]]
|
|
||||||
|
|
||||||
-- Config for: barbecue.nvim
|
|
||||||
try_loadstring("\27LJ\2\n6\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\rbarbecue\frequire\0", "config", "barbecue.nvim")
|
|
||||||
|
|
||||||
time([[Sequenced loading]], false)
|
|
||||||
|
|
||||||
-- Command lazy-loads
|
|
||||||
time([[Defining lazy-load commands]], true)
|
|
||||||
pcall(vim.api.nvim_create_user_command, 'DBUI', function(cmdargs)
|
|
||||||
require('packer.load')({'vim-dadbod'}, { cmd = 'DBUI', l1 = cmdargs.line1, l2 = cmdargs.line2, bang = cmdargs.bang, args = cmdargs.args, mods = cmdargs.mods }, _G.packer_plugins)
|
|
||||||
end,
|
|
||||||
{nargs = '*', range = true, bang = true, complete = function()
|
|
||||||
require('packer.load')({'vim-dadbod'}, {}, _G.packer_plugins)
|
|
||||||
return vim.fn.getcompletion('DBUI ', 'cmdline')
|
|
||||||
end})
|
|
||||||
pcall(vim.api.nvim_create_user_command, 'DBUIAddConnection', function(cmdargs)
|
|
||||||
require('packer.load')({'vim-dadbod'}, { cmd = 'DBUIAddConnection', l1 = cmdargs.line1, l2 = cmdargs.line2, bang = cmdargs.bang, args = cmdargs.args, mods = cmdargs.mods }, _G.packer_plugins)
|
|
||||||
end,
|
|
||||||
{nargs = '*', range = true, bang = true, complete = function()
|
|
||||||
require('packer.load')({'vim-dadbod'}, {}, _G.packer_plugins)
|
|
||||||
return vim.fn.getcompletion('DBUIAddConnection ', 'cmdline')
|
|
||||||
end})
|
|
||||||
pcall(vim.api.nvim_create_user_command, 'DBUIFindBuffer', function(cmdargs)
|
|
||||||
require('packer.load')({'vim-dadbod'}, { cmd = 'DBUIFindBuffer', l1 = cmdargs.line1, l2 = cmdargs.line2, bang = cmdargs.bang, args = cmdargs.args, mods = cmdargs.mods }, _G.packer_plugins)
|
|
||||||
end,
|
|
||||||
{nargs = '*', range = true, bang = true, complete = function()
|
|
||||||
require('packer.load')({'vim-dadbod'}, {}, _G.packer_plugins)
|
|
||||||
return vim.fn.getcompletion('DBUIFindBuffer ', 'cmdline')
|
|
||||||
end})
|
|
||||||
pcall(vim.api.nvim_create_user_command, 'DBUIRenameBuffer', function(cmdargs)
|
|
||||||
require('packer.load')({'vim-dadbod'}, { cmd = 'DBUIRenameBuffer', l1 = cmdargs.line1, l2 = cmdargs.line2, bang = cmdargs.bang, args = cmdargs.args, mods = cmdargs.mods }, _G.packer_plugins)
|
|
||||||
end,
|
|
||||||
{nargs = '*', range = true, bang = true, complete = function()
|
|
||||||
require('packer.load')({'vim-dadbod'}, {}, _G.packer_plugins)
|
|
||||||
return vim.fn.getcompletion('DBUIRenameBuffer ', 'cmdline')
|
|
||||||
end})
|
|
||||||
pcall(vim.api.nvim_create_user_command, 'DBUILastQueryInfo', function(cmdargs)
|
|
||||||
require('packer.load')({'vim-dadbod'}, { cmd = 'DBUILastQueryInfo', l1 = cmdargs.line1, l2 = cmdargs.line2, bang = cmdargs.bang, args = cmdargs.args, mods = cmdargs.mods }, _G.packer_plugins)
|
|
||||||
end,
|
|
||||||
{nargs = '*', range = true, bang = true, complete = function()
|
|
||||||
require('packer.load')({'vim-dadbod'}, {}, _G.packer_plugins)
|
|
||||||
return vim.fn.getcompletion('DBUILastQueryInfo ', 'cmdline')
|
|
||||||
end})
|
|
||||||
pcall(vim.api.nvim_create_user_command, 'DBUIToggle', function(cmdargs)
|
|
||||||
require('packer.load')({'vim-dadbod'}, { cmd = 'DBUIToggle', l1 = cmdargs.line1, l2 = cmdargs.line2, bang = cmdargs.bang, args = cmdargs.args, mods = cmdargs.mods }, _G.packer_plugins)
|
|
||||||
end,
|
|
||||||
{nargs = '*', range = true, bang = true, complete = function()
|
|
||||||
require('packer.load')({'vim-dadbod'}, {}, _G.packer_plugins)
|
|
||||||
return vim.fn.getcompletion('DBUIToggle ', 'cmdline')
|
|
||||||
end})
|
|
||||||
time([[Defining lazy-load commands]], false)
|
|
||||||
|
|
||||||
|
|
||||||
_G._packer.inside_compile = false
|
|
||||||
if _G._packer.needs_bufread == true then
|
|
||||||
vim.cmd("doautocmd BufRead")
|
|
||||||
end
|
|
||||||
_G._packer.needs_bufread = false
|
|
||||||
|
|
||||||
if should_profile then save_profiles() end
|
|
||||||
|
|
||||||
end)
|
|
||||||
|
|
||||||
if not no_errors then
|
|
||||||
error_msg = error_msg:gsub('"', '\\"')
|
|
||||||
vim.api.nvim_command('echohl ErrorMsg | echom "Error in packer_compiled: '..error_msg..'" | echom "Please check your config for correctness" | echohl None')
|
|
||||||
end
|
|
||||||
2
config/.config/ranger/rc.conf
Normal file
2
config/.config/ranger/rc.conf
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
set preview_images true
|
||||||
|
set preview_images_method ueberzug
|
||||||
14
config/.notmuch-config
Normal file
14
config/.notmuch-config
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
[database]
|
||||||
|
path=/home/mikec/.local/share/mail
|
||||||
|
[user]
|
||||||
|
name=mikecchalupiak
|
||||||
|
primary_email=mikecchalupiak@outlook.com
|
||||||
|
[new]
|
||||||
|
tags=unread;inbox;
|
||||||
|
ignore=.mbsyncstate;.uidvalidity
|
||||||
|
[search]
|
||||||
|
exclude_tags=deleted;spam;
|
||||||
|
[maildir]
|
||||||
|
synchronize_flags=true
|
||||||
|
[crypto]
|
||||||
|
gpg_path=gpg
|
||||||
@@ -3,8 +3,13 @@ if [ "$XDG_SESSION_DESKTOP" = "sway" ] ; then
|
|||||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||||
export STUDIO_JDK=/usr/lib/jvm/java-11-openjdk/
|
export STUDIO_JDK=/usr/lib/jvm/java-11-openjdk/
|
||||||
fi
|
fi
|
||||||
|
export PATH="${PATH}:$HOME/.scripts:$HOME/.emacs.d/bin:$HOME/.local/share/gem/ruby/3.0.0/bin"
|
||||||
|
source ~/.bashrc
|
||||||
|
export QSYS_ROOTDIR="/home/mikec/intelFPGA_lite/18.1/quartus/sopc_builder/bin"
|
||||||
|
export CLASSPATH="/usr/share/java/junit.jar:/usr/share/java/hamcrest/core.jar"
|
||||||
|
|
||||||
# Added by Toolbox App
|
# Added by Toolbox App
|
||||||
export PATH="$PATH:/home/mikec/.local/share/JetBrains/Toolbox/scripts"
|
export PATH="$PATH:/home/mikec/.local/share/JetBrains/Toolbox/scripts"
|
||||||
|
|
||||||
|
|
||||||
|
[ -f "/home/mikec/.ghcup/env" ] && . "/home/mikec/.ghcup/env" # ghcup-env
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
DATE=$(date +'%Y-%m-%d %I:%M:%S %p')
|
DATE=$(date +'%Y-%m-%d %I:%M:%S %p')
|
||||||
# BAT=$(cat /sys/class/power_supply/BAT1/capacity)
|
BAT=$(cat /sys/class/power_supply/BAT1/capacity)
|
||||||
VOL=$(pactl get-sink-volume @DEFAULT_SINK@ | tr "," "\n" | grep \% | sed s/Volume\:// | sed 's/\%.*$//' | sed 's/^.*\///' | head -n1 | sed s/\ *//)
|
VOL=$(pactl get-sink-volume @DEFAULT_SINK@ | tr "," "\n" | grep \% | sed s/Volume\:// | sed 's/\%.*$//' | sed 's/^.*\///' | head -n1 | sed s/\ *//)
|
||||||
VOL="${VOL}%"
|
VOL="${VOL}%"
|
||||||
MUTED=$(pactl get-sink-mute @DEFAULT_SINK@ | cut -d\ -f2)
|
MUTED=$(pactl get-sink-mute @DEFAULT_SINK@ | cut -d\ -f2)
|
||||||
# BRIGHT=$(brightnessctl | tr "\n" " " | cut -d\ -f9 | tr -d "()%")
|
BRIGHT=$(brightnessctl | tr "\n" " " | cut -d\ -f9 | tr -d "()%")
|
||||||
MEM=$(free -h | sed 's/[ ]\+/:/g' | cut -d\: -f4 | tr "\n" ":" | cut -d\: -f2)
|
MEM=$(free -h | sed 's/[ ]\+/:/g' | cut -d\: -f4 | tr "\n" ":" | cut -d\: -f2)
|
||||||
USER=$(id -u -n)
|
USER=$(id -u -n)
|
||||||
HOST=$(cat /proc/sys/kernel/hostname)
|
HOST=$(cat /proc/sys/kernel/hostname)
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ import readline
|
|||||||
# encryption and decryption pipes you prefer. They should read from standard
|
# encryption and decryption pipes you prefer. They should read from standard
|
||||||
# input and write to standard output. The example values here invoke GPG,
|
# input and write to standard output. The example values here invoke GPG,
|
||||||
# although won't work until an appropriate identity appears in the first line.
|
# although won't work until an appropriate identity appears in the first line.
|
||||||
ENCRYPTION_PIPE = ['gpg', '--encrypt', '--recipient', 'mikecchalupiak@outlook.com']
|
ENCRYPTION_PIPE = ['gpg', '--encrypt', '--recipient', 'mchalupiak']
|
||||||
DECRYPTION_PIPE = ['gpg', '--decrypt']
|
DECRYPTION_PIPE = ['gpg', '--decrypt']
|
||||||
|
|
||||||
registrations = {
|
registrations = {
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
GAMES=$(find /home/mikec/Documents/Games/ROMS/N64 -iname "*.zip" | bemenu -i --fn "Cascadia Code 12")
|
# MON=$(xrandr | grep ' connected' | cut -d' ' -f1 | dmenu -i)
|
||||||
[ -z "$GAMES" ] || mupen64plus "$GAMES"
|
GAMES=$(find /home/mikec/Documents/Games/ROMS/N64 -iname "*.zip" | dmenu -i -l 10)
|
||||||
|
[ -z "$GAMES" ] && exit
|
||||||
|
# GAME=$(mktemp)
|
||||||
|
# RES=$(xrandr | grep "$MON" | sed -E 's/.*connected (primary )?([0-9]*x[0-9]*).*/\2/')
|
||||||
|
# echo "$RES"
|
||||||
|
# rm -r "$GAME"
|
||||||
|
# unzip "$GAMES" -d "$GAME"
|
||||||
|
# mupen64plus --resolution "$RES" --windowed --gfx mupen64plus-video-glide64mk2 "$GAME"/*
|
||||||
|
# rm -r "$GAME"
|
||||||
|
RMG --fullscreen "$GAMES"
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
GAMES=$(find /home/mikec/Documents/Games/ROMS/NES/USA -iname "*.nes" | bemenu -i --fn "Cascadia Code 12")
|
GAMES=$(find /home/mikec/Documents/Games/ROMS/NES/USA -iname "*.nes" | dmenu -i)
|
||||||
[ -z "$GAMES" ] || fceux "$GAMES"
|
[ -z "$GAMES" ] || fceux "$GAMES"
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
|
|
||||||
export PATH="${PATH}:$HOME/.scripts:~/.local/share/gem/ruby/3.0.0/bin"
|
export PATH="${PATH}:$HOME/.scripts:~/.local/share/gem/ruby/3.0.0/bin"
|
||||||
#export GDK_SCALE=2
|
export GDK_SCALE=2
|
||||||
#export GDK_DPI_SCALE=0.5
|
export GDK_DPI_SCALE=0.5
|
||||||
|
export XCURSOR_SIZE=32
|
||||||
#sxhkd -c $HOME/.config/berry/sxhkdrc &
|
#sxhkd -c $HOME/.config/berry/sxhkdrc &
|
||||||
|
xrandr --output eDP-1 --scale 1.25x1.25
|
||||||
|
# autorandr -c
|
||||||
# xrandr --output DisplayPort-0 --rate 165
|
# xrandr --output DisplayPort-0 --rate 165
|
||||||
autorandr -c
|
|
||||||
$HOME/.fehbg
|
$HOME/.fehbg
|
||||||
|
|||||||
Reference in New Issue
Block a user