diff options
| author | Simen A. W. Olsen <hello@simenandre.no> | 2024-12-27 15:13:37 +0100 |
|---|---|---|
| committer | Simen A. W. Olsen <hello@simenandre.no> | 2024-12-27 15:13:37 +0100 |
| commit | 35ada36cd3559ed13b9a1567b9a0c0732d74a410 (patch) | |
| tree | 65b7726e725bf31edb8826838115db2b11334483 /.config/nvim/init.lua | |
| parent | f6ac11c37e420cb2fb7d90bd1df9650d948b2433 (diff) | |
| download | dotfiles-35ada36cd3559ed13b9a1567b9a0c0732d74a410.tar.gz dotfiles-35ada36cd3559ed13b9a1567b9a0c0732d74a410.zip | |
remove nvim config
Diffstat (limited to '.config/nvim/init.lua')
| -rw-r--r-- | .config/nvim/init.lua | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua deleted file mode 100644 index f9c97c6..0000000 --- a/.config/nvim/init.lua +++ /dev/null @@ -1,35 +0,0 @@ -require("simenandre") - -local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" -if not vim.loop.fs_stat(lazypath) then - local lazyrepo = "https://github.com/folke/lazy.nvim.git" - vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath }) -end ---@diagnostic disable-next-line: undefined-field -vim.opt.rtp:prepend(lazypath) - -require("lazy").setup({ - { import = "simenandre.plugins", rocks = { enabled = false } }, -}, { - ui = { - -- If you are using a Nerd Font: set icons to an empty table which will use the - -- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table - icons = vim.g.have_nerd_font and {} or { - cmd = "⌘", - config = "🛠", - event = "📅", - ft = "📂", - init = "⚙", - keys = "🗝", - plugin = "🔌", - runtime = "💻", - require = "🌙", - source = "📄", - start = "🚀", - task = "📌", - lazy = "💤 ", - }, - }, -}) - --- The line beneath this is called `modeline`. See `:help modeline` --- vim: ts=2 sts=2 sw=2 et |
