experimenting again

This commit is contained in:
Nicole Tietz-Sokolskaya 2025-02-03 13:27:23 -05:00
parent 9640ead883
commit 4c41e9e6b0
3 changed files with 4 additions and 7 deletions

View file

@ -87,11 +87,5 @@ else
set signcolumn=number
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
source $HOME/.config/nvim/colors.vim

View file

@ -1,3 +1,6 @@
-- Copilot
require("copilot").setup(options)
-- Setup language servers.
local lspconfig = require('lspconfig')
lspconfig.rust_analyzer.setup({})
@ -54,4 +57,3 @@ vim.api.nvim_create_autocmd("LspAttach", {
require("lsp-inlayhints").on_attach(client, bufnr)
end,
})

View file

@ -49,6 +49,7 @@ Plug 'stevearc/dressing.nvim'
" Our new AI overlords 🤖
"Plug 'github/copilot.vim', { 'branch': 'release' }
Plug 'zbirenbaum/copilot.lua'
" Uncomment this line to disable copilot
"let g:copilot_enabled = 0