experimenting again
This commit is contained in:
parent
9640ead883
commit
4c41e9e6b0
3 changed files with 4 additions and 7 deletions
|
|
@ -87,11 +87,5 @@ else
|
||||||
set signcolumn=number
|
set signcolumn=number
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Turn off polyglot for some langs so they play nice
|
|
||||||
" if exists('g:loaded_polyglot')
|
|
||||||
" let g:polyglot_disabled = ['go', 'rst', 'tla']
|
|
||||||
" endif
|
|
||||||
" au BufRead,BufNewFile *.tla setf tla
|
|
||||||
|
|
||||||
" I like pretty things
|
" I like pretty things
|
||||||
source $HOME/.config/nvim/colors.vim
|
source $HOME/.config/nvim/colors.vim
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
-- Copilot
|
||||||
|
require("copilot").setup(options)
|
||||||
|
|
||||||
-- Setup language servers.
|
-- Setup language servers.
|
||||||
local lspconfig = require('lspconfig')
|
local lspconfig = require('lspconfig')
|
||||||
lspconfig.rust_analyzer.setup({})
|
lspconfig.rust_analyzer.setup({})
|
||||||
|
|
@ -54,4 +57,3 @@ vim.api.nvim_create_autocmd("LspAttach", {
|
||||||
require("lsp-inlayhints").on_attach(client, bufnr)
|
require("lsp-inlayhints").on_attach(client, bufnr)
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,6 +49,7 @@ Plug 'stevearc/dressing.nvim'
|
||||||
|
|
||||||
" Our new AI overlords 🤖
|
" Our new AI overlords 🤖
|
||||||
"Plug 'github/copilot.vim', { 'branch': 'release' }
|
"Plug 'github/copilot.vim', { 'branch': 'release' }
|
||||||
|
Plug 'zbirenbaum/copilot.lua'
|
||||||
" Uncomment this line to disable copilot
|
" Uncomment this line to disable copilot
|
||||||
"let g:copilot_enabled = 0
|
"let g:copilot_enabled = 0
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue