From 4d3bb0270aa6e76131fb12c191a07fde8cd819fe Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Mon, 21 Apr 2025 15:15:42 +0300 Subject: =?UTF-8?q?=D0=9F=D1=80=D0=B8=D0=B2=D1=91=D0=BB=20nvim=20=D0=BA=20?= =?UTF-8?q?=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D1=82=D0=BE=D1=87=D0=BD=D0=BE?= =?UTF-8?q?=D0=BC=D1=83=20=D1=81=D0=BE=D1=81=D1=82=D0=BE=D1=8F=D0=BD=D0=B8?= =?UTF-8?q?=D1=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nvim/init.lua | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) (limited to 'nvim/init.lua') diff --git a/nvim/init.lua b/nvim/init.lua index b0d2370..306c8ed 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -1,18 +1,20 @@ local fn = vim.fn -local install_path = fn.stdpath('config')..'/pack/packer/start/packer.nvim' +local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim" if fn.empty(fn.glob(install_path)) > 0 then - packer_bootstrap = fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path}) + packer_bootstrap = + fn.system({ "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim", install_path }) end vim.g.mapleader = " " vim.g.maplocalleader = " " -vim.cmd [[packadd packer.nvim]] +vim.cmd([[packadd packer.nvim]]) -require 'options' -require 'keymaps' -require 'autocommands' -require 'plugins' -require 'lsp' +require("options") +require("keymaps") +require("autocommands") +require("plugins") +require("lsp") +require("dap") -vim.cmd [[colorscheme moonfly]] +vim.cmd([[colorscheme moonfly]]) -- cgit v1.2.3