diff options
-rw-r--r-- | .github/workflows/install.yaml | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | ftplugin/elixir.lua | 2 | ||||
-rw-r--r-- | ftplugin/euphoria3.lua | 2 | ||||
-rw-r--r-- | lua/core/dashboard.lua | 2 | ||||
-rw-r--r-- | lua/lsp/peek.lua | 2 | ||||
-rw-r--r-- | lua/utils/init.lua | 2 | ||||
-rwxr-xr-x | utils/installer/install_stylua.sh | 4 |
8 files changed, 9 insertions, 9 deletions
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 @@ -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 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 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 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 |