bug: there's also :LspInfo that is outdated
parent
b5b08fdfd9
commit
c43c27f5dd
|
@ -84,7 +84,7 @@ WPlug('hrsh7th/cmp-cmdline')
|
||||||
WPlug('hrsh7th/nvim-cmp')
|
WPlug('hrsh7th/nvim-cmp')
|
||||||
WPlug('hrsh7th/cmp-nvim-lsp-signature-help')
|
WPlug('hrsh7th/cmp-nvim-lsp-signature-help')
|
||||||
WPlug('onsails/lspkind-nvim')
|
WPlug('onsails/lspkind-nvim')
|
||||||
WPlug('yioneko/nvim-yati', { tag = '*' }) -- copium: fix Python indent auto-correct from smart-indent
|
-- WPlug('yioneko/nvim-yati', { tag = '*' }) -- copium: fix Python indent auto-correct from smart-indent
|
||||||
WPlug('nathanalderson/yang.vim')
|
WPlug('nathanalderson/yang.vim')
|
||||||
-- WPlug('tzachar/cmp-tabnine', { ['do'] = './install.sh' })
|
-- WPlug('tzachar/cmp-tabnine', { ['do'] = './install.sh' })
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@ WPlug('gruvbox-community/gruvbox') -- theme provider
|
||||||
WPlug('nvim-lualine/lualine.nvim') -- fancy status line
|
WPlug('nvim-lualine/lualine.nvim') -- fancy status line
|
||||||
WPlug('lukas-reineke/indent-blankline.nvim') -- identation lines on blank lines
|
WPlug('lukas-reineke/indent-blankline.nvim') -- identation lines on blank lines
|
||||||
WPlug('kyazdani42/nvim-web-devicons') -- icons for folder and filetypes
|
WPlug('kyazdani42/nvim-web-devicons') -- icons for folder and filetypes
|
||||||
WPlug('m-demare/hlargs.nvim') -- highlights arguments; great for func prog
|
-- WPlug('m-demare/hlargs.nvim') -- highlights arguments; great for func prog
|
||||||
WPlug('folke/todo-comments.nvim') -- Highlights TODO
|
WPlug('folke/todo-comments.nvim') -- Highlights TODO
|
||||||
WPlug('NvChad/nvim-colorizer.lua') -- color highlighter with tailwind support
|
WPlug('NvChad/nvim-colorizer.lua') -- color highlighter with tailwind support
|
||||||
WPlug('roobert/tailwindcss-colorizer-cmp.nvim') -- color for tailiwnd for compe
|
WPlug('roobert/tailwindcss-colorizer-cmp.nvim') -- color for tailiwnd for compe
|
||||||
|
@ -253,7 +253,7 @@ vim.keymap.set('n', '<leader>gg', '<cmd>GuessIndent<cr>')
|
||||||
vim.cmd([[
|
vim.cmd([[
|
||||||
colorscheme gruvbox
|
colorscheme gruvbox
|
||||||
]])
|
]])
|
||||||
require('hlargs').setup()
|
-- require('hlargs').setup()
|
||||||
require('nvim-web-devicons').setup()
|
require('nvim-web-devicons').setup()
|
||||||
require('trouble').setup {
|
require('trouble').setup {
|
||||||
position = "bottom", -- position of the list can be: bottom, top, left, right
|
position = "bottom", -- position of the list can be: bottom, top, left, right
|
||||||
|
@ -588,12 +588,12 @@ vim.api.nvim_set_keymap('n', '<C-t>x', ':tabdo if tabpagenr() > 1 | tabclose | e
|
||||||
-- treesitter
|
-- treesitter
|
||||||
require 'treesitter-context'
|
require 'treesitter-context'
|
||||||
require('nvim-treesitter.configs').setup {
|
require('nvim-treesitter.configs').setup {
|
||||||
yati = {
|
-- yati = {
|
||||||
enable = true,
|
-- enable = true,
|
||||||
default_lazy = true,
|
-- default_lazy = true,
|
||||||
default_fallback = "auto",
|
-- default_fallback = "auto",
|
||||||
disable = { "nix" }
|
-- disable = { "nix" }
|
||||||
},
|
-- },
|
||||||
indent = { enable = false },
|
indent = { enable = false },
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
@ -779,6 +779,8 @@ local on_attach = function(client, bufnr)
|
||||||
|
|
||||||
-- enable inlay hints if available
|
-- enable inlay hints if available
|
||||||
require('inlay-hints').on_attach(client, bufnr)
|
require('inlay-hints').on_attach(client, bufnr)
|
||||||
|
|
||||||
|
client.server_capabilities.semanticTokensProvider = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
require("sg").setup {
|
require("sg").setup {
|
||||||
|
|
Loading…
Reference in New Issue