Skip to content

Commit

Permalink
Number default config respect user config (#1498)
Browse files Browse the repository at this point in the history
  • Loading branch information
BBboy01 authored Oct 17, 2024
1 parent 3c1af05 commit 0329b2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/lspsaga/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ local default_config = {
sp_inexist = false,
sp_global = false,
ly_botright = false,
number = true,
relativenumber = true,
number = vim.o.number,
relativenumber = vim.o.relativenumber,
keys = {
shuttle = '[w',
toggle_or_open = 'o',
Expand All @@ -101,8 +101,8 @@ local default_config = {
width = 0.6,
height = 0.5,
save_pos = false,
number = true,
relativenumber = true,
number = vim.o.number,
relativenumber = vim.o.relativenumber,
keys = {
edit = '<C-o>',
vsplit = '<C-v>',
Expand Down

0 comments on commit 0329b2f

Please sign in to comment.