From 8da47a6335f4662f12a191db101b28d143659f3a Mon Sep 17 00:00:00 2001
From: Brahmajit Das <brahmajit.xyz@gmail.com>
Date: Sat, 9 Mar 2024 22:06:39 +0530
Subject: deleting old config files

Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
---
 lua/core/appearance.lua | 52 -------------------------------------------------
 1 file changed, 52 deletions(-)
 delete mode 100644 lua/core/appearance.lua

(limited to 'lua/core/appearance.lua')

diff --git a/lua/core/appearance.lua b/lua/core/appearance.lua
deleted file mode 100644
index ba73502..0000000
--- a/lua/core/appearance.lua
+++ /dev/null
@@ -1,52 +0,0 @@
-local opt = vim.opt   -- Set options (global/buffer/windows-scoped)
-
------------------------------------------------------------
--- Neovim UI
------------------------------------------------------------
-opt.number = true           -- Show line number
-opt.relativenumber = true   -- Show relative line number
-opt.showmatch = true        -- Highlight matching parenthesis
-opt.foldmethod = 'marker'   -- Enable folding (default 'foldmarker')
-opt.splitright = true       -- Vertical split to the right
-opt.splitbelow = true       -- Horizontal split to the bottom
-opt.ignorecase = true       -- Ignore case letters when search
-opt.smartcase = true        -- Ignore lowercase for the whole pattern
-opt.linebreak = true        -- Wrap on word boundary
-opt.termguicolors = true    -- Enable 24-bit RGB colors
-opt.laststatus = 2          -- Set global statusline
-opt.splitbelow = true
-opt.splitright = true
-opt.scrolloff = 2
-opt.sidescrolloff = 5
-opt.foldlevelstart = 99
-opt.ruler = false
-opt.list = true
-opt.showtabline = 0
-opt.winwidth = 30
-opt.winminwidth = 10
-opt.pumheight = 15
-opt.helpheight = 12
-opt.previewheight = 12
-opt.showcmd = false
-opt.listchars = 'tab:░ ,extends:›,precedes:‹,nbsp:·,trail:·'
-opt.background = 'dark'
-opt.cmdheight = 2
-opt.fillchars = {
-	diff = "╱",
-	vert = "│",
-	fold = "⠀",
-	eob = " ", -- suppress ~ at EndOfBuffer
-	--diff = "⣿", -- alternatives = ⣿ ░ ─ ╱
-	msgsep = "‾",
-	foldopen = "▾",
-	foldsep = "│",
-	foldclose = "▸",
-}
-
-vim.cmd [[
-	" Function, identifier and comments in italic
-	highlight Function cterm=italic gui=italic
-	highlight Indentifier cterm=none gui=italic
-	highlight Comment cterm=italic gui=italic
-]]
-vim.cmd[[ "syntax sync fromstart" ]]
-- 
cgit v1.2.3