diff options
-rw-r--r-- | init.vim | 10 | ||||
-rw-r--r-- | lua/lsp.lua | 1 |
2 files changed, 6 insertions, 5 deletions
@@ -35,7 +35,7 @@ Plug 'hrsh7th/cmp-vsnip' Plug 'hrsh7th/nvim-cmp' Plug 'hrsh7th/vim-vsnip' Plug 'kyazdani42/nvim-web-devicons' -Plug 'lukas-reineke/virt-column.nvim' +" Plug 'lukas-reineke/virt-column.nvim' Plug 'nanozuki/tabby.nvim' Plug 'neovim/nvim-lspconfig' Plug 'nvim-lua/plenary.nvim' @@ -320,10 +320,10 @@ lua << EOF -- other configuration values here }) - require("virt-column").setup({ - char = '▐', - highlight = "ColorColumnLine" - }) + -- require("virt-column").setup({ + -- char = '│', + -- highlight = "ColorColumnLine" + -- }) function run_format_code() local lsps = vim.lsp.buf_get_clients() diff --git a/lua/lsp.lua b/lua/lsp.lua index 4c0fb66..6684c80 100644 --- a/lua/lsp.lua +++ b/lua/lsp.lua @@ -12,6 +12,7 @@ nvim_lsp.rust_analyzer.setup {} nvim_lsp.verible.setup {} nvim_lsp.vimls.setup {} nvim_lsp.zls.setup {} +nvim_lsp.texlab.setup {} nvim_lsp.hls.setup { settings = { haskell = { |