diff --git a/.emacs.d/.gitignore b/.emacs.d/.gitignore index 6e4464f..0e498f7 100644 --- a/.emacs.d/.gitignore +++ b/.emacs.d/.gitignore @@ -43,4 +43,7 @@ server /tree-sitter !/tree-sitter/README.md /lib -/lib64 \ No newline at end of file +/lib64 +/bin/bundle/ +/node_modules/ +/yarn.lock \ No newline at end of file diff --git a/.emacs.d/bin/.bundle/config b/.emacs.d/bin/.bundle/config new file mode 100644 index 0000000..bc0c601 --- /dev/null +++ b/.emacs.d/bin/.bundle/config @@ -0,0 +1,2 @@ +--- +BUNDLE_PATH: "bundle" diff --git a/.emacs.d/bin/Gemfile b/.emacs.d/bin/Gemfile new file mode 100644 index 0000000..4179125 --- /dev/null +++ b/.emacs.d/bin/Gemfile @@ -0,0 +1,2 @@ +source 'http://rubygems.org' +gem 'solargraph', group: :development diff --git a/.emacs.d/bin/Gemfile.lock b/.emacs.d/bin/Gemfile.lock new file mode 100644 index 0000000..0a78360 --- /dev/null +++ b/.emacs.d/bin/Gemfile.lock @@ -0,0 +1,71 @@ +GEM + remote: http://rubygems.org/ + specs: + ast (2.4.2) + backport (1.2.0) + benchmark (0.3.0) + diff-lcs (1.5.0) + e2mmap (0.1.0) + jaro_winkler (1.5.6) + json (2.7.1) + kramdown (2.4.0) + rexml + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) + language_server-protocol (3.17.0.3) + nokogiri (1.16.0-x86_64-linux) + racc (~> 1.4) + parallel (1.24.0) + parser (3.3.0.5) + ast (~> 2.4.1) + racc + racc (1.7.3) + rainbow (3.1.1) + rbs (2.8.4) + regexp_parser (2.9.0) + reverse_markdown (2.1.1) + nokogiri + rexml (3.2.6) + rubocop (1.60.1) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.30.0, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + ruby-progressbar (1.13.0) + solargraph (0.50.0) + backport (~> 1.2) + benchmark + bundler (~> 2.0) + diff-lcs (~> 1.4) + e2mmap + jaro_winkler (~> 1.5) + kramdown (~> 2.3) + kramdown-parser-gfm (~> 1.1) + parser (~> 3.0) + rbs (~> 2.0) + reverse_markdown (~> 2.0) + rubocop (~> 1.38) + thor (~> 1.0) + tilt (~> 2.0) + yard (~> 0.9, >= 0.9.24) + thor (1.3.0) + tilt (2.3.0) + unicode-display_width (2.5.0) + yard (0.9.34) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + solargraph + +BUNDLED WITH + 2.3.26 diff --git a/.emacs.d/bin/solargraph b/.emacs.d/bin/solargraph index cfd6f05..3177e10 120000 --- a/.emacs.d/bin/solargraph +++ b/.emacs.d/bin/solargraph @@ -1 +1 @@ -/home/nanasess/.gem/ruby/2.7.0/bin/solargraph \ No newline at end of file +bundle/ruby/3.1.0/bin/solargraph \ No newline at end of file diff --git a/.emacs.d/el-get.lock b/.emacs.d/el-get.lock index 4506c2c..2456914 100644 --- a/.emacs.d/el-get.lock +++ b/.emacs.d/el-get.lock @@ -1,6 +1,6 @@ (setq el-get-lock-package-versions '((tree-sitter-php-mode :checksum "2f791d9d83c35b11e9a14daf9a58dd7e23566041") - (php-ts-mode :checksum "bf0636751720b85ac1866e602e197ceb07fa9045") + (php-ts-mode :checksum "b398a871ce7dda880997196666083e850d153388") (jq-mode :checksum "071c1c29bac30351ad338136f2b625e5601365cd") (terraform-mode :checksum "25a22a66f81e35c75f2fdaaab89aad7f9940fe06") (hcl-mode :checksum "ec27736c4c16fbf7f1ecab0210ec3c71ac2406fa") @@ -8,7 +8,7 @@ (fosi :checksum "f5f61d91545e18ebe879a53f1c679da6d3aa9c4e") (wakatime-mode :checksum "ef923829912c3854d230834f81083814b7c9d992") (compat :checksum "32e737b145fef05105e2bad4ca34ca41072e9569") - (lsp-bridge :checksum "1992ae27a196ff26e51646bd20053f818853142b") + (lsp-bridge :checksum "f582b8b2e32fe9bfb759fe1331791874e31e982b") (copilot :checksum "421703f5dd5218ec2a3aa23ddf09d5f13e5014c2") (eldoc-box :checksum "5c067f5c195198ffd16df2f455da95e46cc8ce02") (eglot :checksum "e501275e06952889056268dabe08ccd0dbaf23e5") diff --git a/.gitignore b/.gitignore index 067e38e..2ee8c80 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -/.log \ No newline at end of file +/.log +.php-cs-fixer.cache \ No newline at end of file