supermaven-inc / supermaven-nvim

The official Neovim plugin for Supermaven
https://supermaven.com/
MIT License
304 stars 16 forks source link

List enabled filetypes #14

Open sQVe opened 1 month ago

sQVe commented 1 month ago

Hey,

For my setup it would make a lot more sense to list enabled filetypes. This list would be a lot shorter compared to a list of ignored filetypes. This is the list I use for GitHub Copilot:

local enabled_filetypes = {
  'css',
  'cucumber',
  'dockerfile',
  'graphql',
  'html',
  'javascript',
  'javascriptreact',
  'json',
  'jsonc',
  'lua',
  'markdown',
  'mchat',
  'scss',
  'sh',
  'typescript',
  'typescriptreact',
  'yaml',
  'zsh',
}

Cheers!