Skip to content

Commit

Permalink
disable github copilot and migrate blankline config to use v3
Browse files Browse the repository at this point in the history
  • Loading branch information
fabmorais committed Oct 21, 2023
1 parent 3925664 commit e5d1fcb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions lua/blankline-config/init.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
require("indent_blankline").setup({
buftype_exclude = { "terminal" },
filetype_exclude = { "dashboard", "NvimTree", "packer" },
require("ibl").setup({
exclude = {
buftypes = {
"terminal",
},
filetypes = {
"dashboard",
"NvimTree",
"packer",
},
},
})
2 changes: 1 addition & 1 deletion lua/packer-config/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ return require("packer").startup(function(use)
use("theHamsta/nvim-dap-virtual-text")

--> AI
use("github/copilot.vim")
-- use("github/copilot.vim")

--> lsp
use("williamboman/mason.nvim")
Expand Down

0 comments on commit e5d1fcb

Please sign in to comment.