Compare commits

..

No commits in common. "ecb5e74badb630f09c3adb4d46dabd84f6476e10" and "360c7fdba11c4b172652e892e10c66147f978a0f" have entirely different histories.

3 changed files with 10 additions and 10 deletions

View file

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2023 Dan Anglin
Copyright (c) 2022 Dan Anglin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -1,3 +1,3 @@
# neovim-config
Neovim configuration for neovim version 0.8.2+.
Neovim configuration for neovim version 0.8.0+.

View file

@ -2,37 +2,37 @@ return require("packer").startup(function(use)
-- Packer can manage itself
use {
"wbthomason/packer.nvim",
commit = "1d0cf98a561f7fd654c970c49f917d74fafe1530", -- 2023-01-11
commit = "6afb67460283f0e990d35d229fd38fdc04063e0a", -- 2022-09-10
}
use {
"folke/tokyonight.nvim",
tag = "v1.0.0", -- 2023-01-04
commit = "fd9105c9487996aa2269992b72a6fea7504688e4", -- 2022-10-05
config = require("plugins.config.tokyonight"),
}
use {
"neovim/nvim-lspconfig",
commit = "ed88435764d8b00442e66d39ec3d9c360e560783", -- 2023-01-14
commit = "1c2a57d991548995030748088a7ded73a7b5f496", -- 2022-10-06
config = require("plugins.config.lsp"),
}
use {
"nvim-treesitter/nvim-treesitter",
commit = "372177fb996b7d94246fd214cc44573116704618", -- 2023-01-14
commit = "a33858d399d0da226b0cf7b45fe9dc8f0a06547b", -- 2022-10-06
config = require("plugins.config.treesitter"),
run = ":TSUpdate",
}
use {
"nvim-tree/nvim-web-devicons",
commit = "6c38926351372ea87034dec26182b62c835ff3bc", -- 2023-01-09
"kyazdani42/nvim-web-devicons",
commit = "a8cf88cbdb5c58e2b658e179c4b2aa997479b3da", -- 2022-10-03
}
use {
"akinsho/bufferline.nvim",
tag = "v3.1.0", -- 2022.10.28
requires = "nvim-tree/nvim-web-devicons",
tag = "v2.12.0", -- 2022.10.03
requires = "kyazdani42/nvim-web-devicons",
config = require("plugins.config.bufferline"),
}