Merge branch 'main' of gitlab.com:taken-personal/neovim-config

This commit is contained in:
2023-06-24 22:37:53 +02:00
2 changed files with 6 additions and 3 deletions

View File

@@ -1,6 +1,11 @@
local g = vim.g
local o = vim.o
local opt = vim.opt
local cmd = vim.cmd
local colorscheme = "tokyonight"
cmd("colorscheme " .. colorscheme)
g.mapleader = " "

View File

@@ -25,10 +25,8 @@ return packer.startup(function(use)
use({
"catppuccin/nvim",
as = "catppuccin",
config = function()
vim.cmd([[colorscheme catppuccin-mocha]])
end,
})
use("folke/tokyonight.nvim")
-- telescope
use({
"nvim-telescope/telescope.nvim",