summaryrefslogtreecommitdiffstats
path: root/lua/Nanderty
diff options
context:
space:
mode:
Diffstat (limited to 'lua/Nanderty')
-rw-r--r--lua/Nanderty/general.lua23
-rw-r--r--lua/Nanderty/lazy.lua70
-rw-r--r--lua/Nanderty/remap.lua2
3 files changed, 0 insertions, 95 deletions
diff --git a/lua/Nanderty/general.lua b/lua/Nanderty/general.lua
deleted file mode 100644
index 36f6519..0000000
--- a/lua/Nanderty/general.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-vim.opt.spelllang = {'de_de', 'en_us'}
-
-vim.opt.timeoutlen = 500
-vim.opt.updatetime = 200
-vim.opt.mouse = a
-vim.opt.signcolumn = 'yes'
-vim.opt.cursorline = true
-
-vim.opt.undofile = true
-vim.opt.undodir = { vim.fn.stdpath('data')..'/undo' }
-vim.opt.undolevels = 1000
-
-vim.opt.number = true
-vim.opt.scrolloff = 20
-vim.opt.numberwidth = 5
-
-vim.opt.termguicolors = true
-vim.opt.guifont = {'Hack NFM:h12'}
-
-require('onedark').setup {
- style = 'warmer'
-}
-require('onedark').load()
diff --git a/lua/Nanderty/lazy.lua b/lua/Nanderty/lazy.lua
deleted file mode 100644
index 6315de3..0000000
--- a/lua/Nanderty/lazy.lua
+++ /dev/null
@@ -1,70 +0,0 @@
-local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
-if not vim.loop.fs_stat(lazypath) then
- vim.fn.system({
- "git",
- "clone",
- "--filter=blob:none",
- "https://github.com/folke/lazy.nvim.git",
- "--branch=stable", -- latest stable release
- lazypath,
- })
-end
-vim.opt.rtp:prepend(lazypath)
-
-vim.g.mapleader = " "
-
-require("lazy").setup({
-
-{'lervag/vimtex', module=false},
-
-{ 'echasnovski/mini.nvim', version = false },
-
-'tpope/vim-fugitive',
-'ludovicchabant/vim-gutentags',
-'sbdchd/neoformat',
-'neomake/neomake',
-
-{
- 'nvim-telescope/telescope.nvim', version = '0.1.1',
- dependencies = { 'nvim-lua/plenary.nvim' }
-},
-
-'lewis6991/gitsigns.nvim',
-'nvim-tree/nvim-tree.lua',
-
-{
- 'akinsho/bufferline.nvim', version = "v3.*",
- dependencies = 'nvim-tree/nvim-web-devicons'
-},
-
-'nvim-lualine/lualine.nvim',
-{
- 'nvim-treesitter/nvim-treesitter',
- build = ':TSUpdate'
-},
-'lukas-reineke/indent-blankline.nvim',
-'navarasu/onedark.nvim';
-
-{
- 'VonHeikemen/lsp-zero.nvim',
- branch = 'v1.x',
- dependencies = {
- -- LSP Support
- {'neovim/nvim-lspconfig'}, -- Required
- {'williamboman/mason.nvim'}, -- Optional
- {'williamboman/mason-lspconfig.nvim'}, -- Optional
-
- -- Autocompletion
- {'hrsh7th/nvim-cmp'}, -- Required
- {'hrsh7th/cmp-nvim-lsp'}, -- Required
- {'hrsh7th/cmp-buffer'}, -- Optional
- {'hrsh7th/cmp-path'}, -- Optional
- {'saadparwaiz1/cmp_luasnip'}, -- Optional
- {'hrsh7th/cmp-nvim-lua'}, -- Optional
-
- -- Snippets
- {'L3MON4D3/LuaSnip'}, -- Required
- }
-},
-
-})
diff --git a/lua/Nanderty/remap.lua b/lua/Nanderty/remap.lua
deleted file mode 100644
index b760350..0000000
--- a/lua/Nanderty/remap.lua
+++ /dev/null
@@ -1,2 +0,0 @@
-vim.g.mapleader = " "
-vim.keymap.set("n", "<leader>pv", vim.cmd.Ex)