Added odin support, removed unused themes
This commit is contained in:
parent
f730875af9
commit
3b595bd314
12
init.lua
12
init.lua
|
@ -70,3 +70,15 @@ parser_config.zimbu = {
|
||||||
},
|
},
|
||||||
filetype = "zu",
|
filetype = "zu",
|
||||||
}
|
}
|
||||||
|
vim.filetype.add({
|
||||||
|
extension = {
|
||||||
|
odin = "odin"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
parser_config.odin = {
|
||||||
|
install_info = {
|
||||||
|
url = "D:\\Code\\odin\\tree-sitter-odin",
|
||||||
|
files = {"src/parser.c"}
|
||||||
|
},
|
||||||
|
filetype = "odin",
|
||||||
|
}
|
||||||
|
|
|
@ -4,9 +4,9 @@ return require('packer').startup(function(use)
|
||||||
-- Packer can manage itself
|
-- Packer can manage itself
|
||||||
use 'wbthomason/packer.nvim'
|
use 'wbthomason/packer.nvim'
|
||||||
-- themes
|
-- themes
|
||||||
use 'sainnhe/everforest'
|
--use 'sainnhe/everforest'
|
||||||
use 'sainnhe/sonokai'
|
--use 'sainnhe/sonokai'
|
||||||
use { 'tomasr/molokai' }
|
--use { 'tomasr/molokai' }
|
||||||
use 'morhetz/gruvbox'
|
use 'morhetz/gruvbox'
|
||||||
-- Treesitter
|
-- Treesitter
|
||||||
use { 'nvim-treesitter/nvim-treesitter' }
|
use { 'nvim-treesitter/nvim-treesitter' }
|
||||||
|
|
Loading…
Reference in New Issue