You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.1 KiB

vim.g.did_load_filetypes = 1
--TODO: switch to a more lua friendly plugin manager
local set = vim.opt
require('packer').startup(function()
use 'wbthomason/packer.nvim'
use "nathom/filetype.nvim"
use 'neovim/nvim-lspconfig'
use 'kyazdani42/nvim-web-devicons'
use 'nvim-lualine/lualine.nvim'
use 'nvim-lua/plenary.nvim'
use 'nvim-telescope/telescope.nvim'
use 'kyazdani42/nvim-tree.lua'
use 'lukas-reineke/indent-blankline.nvim'
use 'navarasu/onedark.nvim'
use 'nvim-treesitter/nvim-treesitter'
use {'ms-jpq/coq_nvim', branch = 'coq'}
use {'ms-jpq/coq.artifacts', branch = 'artifacts'}
use {'noib3/cokeline.nvim', requires = 'kyazdani42/nvim-web-devicons'}
use 'numtostr/FTerm.nvim'
use 'andweeb/presence.nvim'
use 'tpope/vim-fugitive'
use 'SmiteshP/nvim-gps'
use 'folke/todo-comments.nvim'
use 'dstein64/vim-startuptime'
end)
set.termguicolors = true
set.mouse = 'a'
set.clipboard = 'unnamedplus'
set.pumheight = 5
set.number = true
set.tabstop = 4
set.shiftwidth = 4
vim.cmd('colorscheme onedark') -- I would assume there would be a more lua-y way to do this... right?
require("plugins")
require("keybinds")