Skip to content

Commit

Permalink
feat: add comment plugin and ranger config
Browse files Browse the repository at this point in the history
  • Loading branch information
adrielp committed May 3, 2024
1 parent a071cfb commit 6dffa7c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .config/nvim/lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,13 @@ local plugs = {
-- Lua
{
"folke/zen-mode.nvim",
}
},
{
"numToStr/Comment.nvim",
config = function()
require ('Comment').setup()
end,
}
}

-- can add opts to .setup(plugs)
Expand Down
7 changes: 7 additions & 0 deletions .config/ranger/rc.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Disable displaying line numbers in main column.
# Possible values: false, absolute, relative.
set line_numbers relative

# When line_numbers=relative show the absolute line number in the
# current line.
set relative_current_zero false

0 comments on commit 6dffa7c

Please sign in to comment.