From e3273ec3dd448848f5000db85fa7b75aee34eb47 Mon Sep 17 00:00:00 2001 From: grvxs Date: Fri, 6 Aug 2021 16:45:50 +0530 Subject: fix: typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 28d3db73..1ed32edc 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ To update Neovim use your package manager or [compile from source](https://githu - User configurable lang/feature enable/disable 3. Provide a [simple and easy](https://github.com/LunarVim/LunarVimCommunity) way for users to share their own configuration or use others. 4. Hot reload of configurations - - Hot install of lsp/treesitter/formatter required upon openning a filetype for the first time + - Hot install of lsp/treesitter/formatter required upon opening a filetype for the first time 5. Provide a stable & maintainable error free configuration layer over neovim - With the help of the community behind it - Github workflow testing -- cgit v1.2.3 From 771f872bccf41e9a8be691892d0e6d29e71b7434 Mon Sep 17 00:00:00 2001 From: grvxs Date: Fri, 6 Aug 2021 16:46:51 +0530 Subject: fix: typos in ftplugin/ --- ftplugin/elixir.lua | 2 +- ftplugin/euphoria3.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ftplugin/elixir.lua b/ftplugin/elixir.lua index f16f71fa..f8ae8b64 100644 --- a/ftplugin/elixir.lua +++ b/ftplugin/elixir.lua @@ -1,7 +1,7 @@ require("lsp").setup "elixir" -- TODO: do we need this? --- needed for the LSP to recognize elixir files (alternativly just use elixir-editors/vim-elixir) +-- needed for the LSP to recognize elixir files (alternatively just use elixir-editors/vim-elixir) -- vim.cmd [[ -- au BufRead,BufNewFile *.ex,*.exs set filetype=elixir -- au BufRead,BufNewFile *.eex,*.leex,*.sface set filetype=eelixir diff --git a/ftplugin/euphoria3.lua b/ftplugin/euphoria3.lua index 391c51ad..168af22b 100644 --- a/ftplugin/euphoria3.lua +++ b/ftplugin/euphoria3.lua @@ -1,7 +1,7 @@ require("lsp").setup "erlang" -- TODO: do we need this? --- needed for the LSP to recognize elixir files (alternativly just use elixir-editors/vim-elixir) +-- needed for the LSP to recognize elixir files (alternatively just use elixir-editors/vim-elixir) -- vim.cmd [[ -- au BufRead,BufNewFile *.ex,*.exs set filetype=elixir -- au BufRead,BufNewFile *.eex,*.leex,*.sface set filetype=eelixir -- cgit v1.2.3 From e4f146e980f31b864db64fa0d343d22e2179ab5e Mon Sep 17 00:00:00 2001 From: grvxs Date: Fri, 6 Aug 2021 16:49:05 +0530 Subject: fix: typo in install.yaml --- .github/workflows/install.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 49c01c29..08801f1b 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -30,7 +30,7 @@ jobs: sudo apt-get update sudo apt-get install neovim -y - - name: Installl dependencies for OSX + - name: Install dependencies for OSX if: matrix.os == 'osx' run: | brew update >/dev/null -- cgit v1.2.3 From f3c44ce3a91b0abc448071d152e0781c4c1465e7 Mon Sep 17 00:00:00 2001 From: grvxs Date: Fri, 6 Aug 2021 16:49:52 +0530 Subject: fix: typo in install_stylua.sh --- utils/installer/install_stylua.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/installer/install_stylua.sh b/utils/installer/install_stylua.sh index cd8b3942..2a33de7e 100755 --- a/utils/installer/install_stylua.sh +++ b/utils/installer/install_stylua.sh @@ -30,7 +30,7 @@ function download_stylua() { exit 1 fi - echo "Installtion in progress.." + echo "Installation in progress.." unzip -q "$DOWNLOAD_DIR/$FILENAME.zip" -d "$DOWNLOAD_DIR" if [ -f "$DOWNLOAD_DIR/stylua" ]; then @@ -43,7 +43,7 @@ function download_stylua() { } function verify_install() { - echo "Verifying installtion.." + echo "Verifying installation.." local DOWNLOADED_VER DOWNLOADED_VER="$("$INSTALL_DIR/stylua" -V | awk '{ print $2 }')" if [ "$DOWNLOADED_VER" != "$RELEASE" ]; then -- cgit v1.2.3 From 9fc6a2e1cdac513c8ff09069263ff102852be86a Mon Sep 17 00:00:00 2001 From: grvxs Date: Fri, 6 Aug 2021 16:50:25 +0530 Subject: fix: typos in lua/ --- lua/core/dashboard.lua | 2 +- lua/lsp/peek.lua | 2 +- lua/utils/init.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/core/dashboard.lua b/lua/core/dashboard.lua index 87741523..27d4efd1 100644 --- a/lua/core/dashboard.lua +++ b/lua/core/dashboard.lua @@ -84,7 +84,7 @@ M.setup = function() require("core.autocmds").define_augroups { _dashboard = { - -- seems to be nobuflisted that makes my stuff disapear will do more testing + -- seems to be nobuflisted that makes my stuff disappear will do more testing { "FileType", "dashboard", diff --git a/lua/lsp/peek.lua b/lua/lsp/peek.lua index e512eee0..cc8e57a9 100644 --- a/lua/lsp/peek.lua +++ b/lua/lsp/peek.lua @@ -100,7 +100,7 @@ function M.set_cursor_to_prev_pos(winnr) local range = location.targetRange or location.range local cursor_pos = { range.start.line + 1, range.start.character } - -- Set the winnr to the floting window if none was passed in + -- Set the winnr to the floating window if none was passed in winnr = winnr or M.floating_win -- Set the cursor at the correct position in the floating window vim.api.nvim_win_set_cursor(winnr, cursor_pos) diff --git a/lua/utils/init.lua b/lua/utils/init.lua index 8cfd2790..8cc1b32d 100644 --- a/lua/utils/init.lua +++ b/lua/utils/init.lua @@ -16,7 +16,7 @@ local function r_inspect_settings(structure, limit, separator) if ts == "table" then for k, v in pairs(structure) do - -- replace non alpha keys wih ["key"] + -- replace non alpha keys with ["key"] if tostring(k):match "[^%a_]" then k = '["' .. tostring(k) .. '"]' end -- cgit v1.2.3