diff --git a/dot_config/nvim/lua/configs/options.lua b/dot_config/nvim/lua/configs/options.lua index adb1c5e..0b950e3 100644 --- a/dot_config/nvim/lua/configs/options.lua +++ b/dot_config/nvim/lua/configs/options.lua @@ -39,6 +39,11 @@ function M.setup() vim.o.grepprg = 'rg --vimgrep --no-ignore --smart-case $*' vim.o.grepformat = '%f:%l:%c:%m' + vim.o.linebreak = true + vim.o.breakindent = true + vim.o.breakindentopt = 'shift:4' + vim.o.showbreak = '…' + local function set_winopts() vim.o.cursorline = true @@ -58,7 +63,7 @@ function M.setup() .. '%-7.(%3.l:%-3.(%c%V%)%) %P' -- ruler if vim.fn.has('nvim-0.9') then - vim.o.statuscolumn = '%C%3l %s' + vim.o.statuscolumn = '%C%3l %=%s' end end set_winopts() diff --git a/dot_config/nvim/lua/configs/packages/lsp.lua b/dot_config/nvim/lua/configs/packages/lsp.lua index fc6386b..3b44def 100644 --- a/dot_config/nvim/lua/configs/packages/lsp.lua +++ b/dot_config/nvim/lua/configs/packages/lsp.lua @@ -188,7 +188,7 @@ local function config() -- {{{ local servers = { -- {{{ - powershell_es = {}, + -- powershell_es = {}, gopls = {}, clangd = {}, zls = {},