Skip to content

Commit

Permalink
neovim: Bring back ale
Browse files Browse the repository at this point in the history
How I missed this :))
  • Loading branch information
juanibiapina committed Feb 16, 2025
1 parent 9606afd commit 5e7c75e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 15 deletions.
15 changes: 0 additions & 15 deletions dotfiles/nvim/.config/nvim/conf/auto/ale.vim

This file was deleted.

1 change: 1 addition & 0 deletions dotfiles/nvim/.config/nvim/init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require("prelude")
require("config")
require("ale") -- ale config must be set before loading the plugin
require("plugins")
require("colorscheme")
require('highlights')
Expand Down
4 changes: 4 additions & 0 deletions dotfiles/nvim/.config/nvim/lua/ale.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- :h ale

vim.g.ale_echo_cursor = 0 -- disable echoing messages at the cursor position
vim.g.ale_ruby_rubocop_executable = "bundle" -- set rubocop executable to use bundle
1 change: 1 addition & 0 deletions dotfiles/nvim/.config/nvim/lua/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Plug("MunifTanjim/nui.nvim")
Plug("nvim-lua/plenary.nvim")

-- LSP
Plug("dense-analysis/ale")
Plug('neovim/nvim-lspconfig')
Plug('j-hui/fidget.nvim') -- Status updates for LSP

Expand Down

0 comments on commit 5e7c75e

Please sign in to comment.