From 97af93b2a8ebc89364852e3f63e9fd8cfedaeedf Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Mon, 9 Jun 2025 13:43:45 +0300 Subject: =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B2=D1=91=D0=BB=20dotfiles?= =?UTF-8?q?=20=D0=BD=D0=B0=20stow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nvim/init.lua | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 nvim/init.lua (limited to 'nvim/init.lua') diff --git a/nvim/init.lua b/nvim/init.lua deleted file mode 100644 index e495d97..0000000 --- a/nvim/init.lua +++ /dev/null @@ -1,37 +0,0 @@ -local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" -if not (vim.uv or vim.loop).fs_stat(lazypath) then - local lazyrepo = "https://github.com/folke/lazy.nvim.git" - local out = vim.fn.system({ - "git", - "clone", - "--filter=blob:none", - "--branch=stable", - lazyrepo, - lazypath, - }) - if vim.v.shell_error ~= 0 then - vim.api.nvim_echo({ - { "Failed to clone lazy.nvim:\n", "ErrorMsg" }, - { out, "WarningMsg" }, - { "\nPress any key to exit..." }, - }, true, {}) - vim.fn.getchar() - os.exit(1) - end -end -vim.opt.rtp:prepend(lazypath) -vim.g.mapleader = " " -vim.g.maplocalleader = " " -vim.g.colorcolumn = 120 -vim.g.loaded_netrw = 1 -vim.g.loaded_netrwPlugin = 1 -vim.cmd("filetype plugin indent on") - -require("options") -require("plugins") -require("keymaps") -require("commands") -require("autocommands") -require("lsp") -require("syntax") --- require("dap") -- cgit v1.2.3