clean stuff

pull/160/head
siduck76 3 years ago
parent 6f2b358d3a
commit 2952f4d5c7

@ -1,8 +1,7 @@
-- load all options
require "options"
-- only try to load stuff if atleast base16 is initialized
-- TODO: Find a better way to trigger PackerSync
-- load stuff only if theme is initialized
if require "theme" then
local async
async =
@ -21,7 +20,7 @@ if require "theme" then
)
async:send()
else
-- otherwise run packer sync
-- otherwise run PackerSync
require "pluginList"
print("Now PackerSync will be executed, after completion, restart neovim.\n")
vim.cmd("PackerSync")

@ -42,7 +42,7 @@ fg("IndentBlanklineChar", line)
-- misc --
fg("LineNr", grey)
fg("Comment", grey_fg2)
fg("Comment", grey_fg)
fg("NvimInternalError", red)
fg("VertSplit", line)
fg("EndOfBuffer", black)

@ -26,7 +26,7 @@ opt.number = true
opt.numberwidth = 2
-- opt.relativenumber = true
-- for indenline
-- Indenline
opt.expandtab = true
opt.shiftwidth = 2
opt.smartindent = true

@ -33,7 +33,7 @@ return packer.startup(
"norcalli/nvim-colorizer.lua",
event = "BufRead",
config = function()
require "plugins.colorizer"
require("plugins.others").colorizer()
end
}
@ -63,7 +63,7 @@ return packer.startup(
"onsails/lspkind-nvim",
event = "BufRead",
config = function()
require "plugins.lspkind"
require("plugins.others").lspkind()
end
}
@ -122,7 +122,6 @@ return packer.startup(
}
use {"nvim-telescope/telescope-fzf-native.nvim", run = "make", cmd = "Telescope"}
use {
"nvim-telescope/telescope-media-files.nvim",
cmd = "Telescope"
@ -152,7 +151,7 @@ return packer.startup(
"terrortylor/nvim-comment",
cmd = "CommentToggle",
config = function()
require "plugins.comment"
require("plugins.others").comment()
end
}
@ -188,7 +187,7 @@ return packer.startup(
"karb94/neoscroll.nvim",
event = "WinScrolled",
config = function()
require "plugins.neoscroll"
require("plugins.others").neoscroll()
end
}
@ -206,7 +205,7 @@ return packer.startup(
"lukas-reineke/indent-blankline.nvim",
event = "BufRead",
setup = function()
require "plugins.blankline"
require("plugins.others").blankline()
end
}
end

@ -3,7 +3,7 @@ local autosave
if
not pcall(
function()
func = require "autosave"
autosave = require "autosave"
end
)
then
@ -20,7 +20,7 @@ autosave.setup(
filetype_is_not = {},
modifiable = true
},
write_all_buffers = true,
write_all_buffers = false,
on_off_commands = true,
clean_command_line_interval = 2500
}

@ -1,9 +0,0 @@
-- blankline config
vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = ""
vim.g.indent_blankline_filetype_exclude = {"help", "terminal", "dashboard"}
vim.g.indent_blankline_buftype_exclude = {"terminal"}
vim.g.indent_blankline_show_trailing_blankline_indent = false
vim.g.indent_blankline_show_first_indent_level = false

@ -1,13 +0,0 @@
local colorizer
if
not pcall(
function()
colorizer = require("colorizer")
end
)
then
return
end
colorizer.setup()
vim.cmd("ColorizerReloadAllBuffers")

@ -1,5 +0,0 @@
pcall(
function()
require("nvim_comment").setup()
end
)

@ -1,5 +0,0 @@
pcall(
function()
require("lspkind").init()
end
)

@ -0,0 +1,54 @@
local M = {}
M.colorizer = function()
local colorizer
if
not pcall(
function()
colorizer = require("colorizer")
end
)
then
return
end
colorizer.setup()
vim.cmd("ColorizerReloadAllBuffers")
end
M.comment = function()
pcall(
function()
require("nvim_comment").setup()
end
)
end
M.lspkind = function()
pcall(
function()
require("lspkind").init()
end
)
end
M.neoscroll = function()
pcall(
function()
require("neoscroll").setup()
end
)
end
M.blankline = function()
vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = ""
vim.g.indent_blankline_filetype_exclude = {"help", "terminal", "dashboard"}
vim.g.indent_blankline_buftype_exclude = {"terminal"}
vim.g.indent_blankline_show_trailing_blankline_indent = false
vim.g.indent_blankline_show_first_indent_level = false
end
return M

@ -44,7 +44,7 @@ telescope.setup(
file_sorter = require("telescope.sorters").get_fuzzy_file,
file_ignore_patterns = {},
generic_sorter = require("telescope.sorters").get_generic_fuzzy_sorter,
path_display = shorten,
path_display = {"absolute"},
winblend = 0,
border = {},
borderchars = {"", "", "", "", "", "", "", ""},

@ -1,4 +1,3 @@
-- colorscheme related stuff
vim.g.nvchad_theme = "onedark"
local base16
@ -12,7 +11,6 @@ if
return false
else
base16(base16.themes["onedark"], true)
local cmd = vim.cmd
-- load bg color before async for smooth transition
local background = require("themes/" .. vim.g.nvchad_theme).black

Loading…
Cancel
Save