summaryrefslogtreecommitdiff
path: root/lua/appearance.lua
diff options
context:
space:
mode:
authorBrahmajit Das <brahmajit.xyz@gmail.com>2024-12-29 13:55:26 +0530
committerBrahmajit Das <brahmajit.xyz@gmail.com>2024-12-29 13:55:26 +0530
commit0b5f3fc96eddcd603de17644da8a962e0a93c04a (patch)
tree60a87da847c30120722b75aed3d025a0ed5e929d /lua/appearance.lua
parent5b62a6fdcaf0604d1234a89d0629680ca77317a5 (diff)
moving global settings to plugin folder, for autoloading
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Diffstat (limited to 'lua/appearance.lua')
-rw-r--r--lua/appearance.lua53
1 files changed, 0 insertions, 53 deletions
diff --git a/lua/appearance.lua b/lua/appearance.lua
deleted file mode 100644
index 3151523..0000000
--- a/lua/appearance.lua
+++ /dev/null
@@ -1,53 +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.colorcolumn = "120" -- Set global color column
-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" ]]