Merge pull request #156 from Akianonymus/main

Major perf improvements | Handle errors | Better configs | Misc
navigator
siduck76 3 years ago committed by GitHub
commit 6f2b358d3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,20 +1,28 @@
-- load all plugins -- load all options
require "pluginList"
require "options" require "options"
local g = vim.g -- only try to load stuff if atleast base16 is initialized
-- TODO: Find a better way to trigger PackerSync
if require "theme" then
local async
async =
vim.loop.new_async(
vim.schedule_wrap(
function()
require "pluginList"
require "plugins.bufferline"
require "highlights"
require "mappings"
require("utils").hideStuff()
g.mapleader = " " async:close()
g.auto_save = false end
)
-- colorscheme related stuff )
async:send()
g.nvchad_theme = "onedark" else
local base16 = require "base16" -- otherwise run packer sync
base16(base16.themes["onedark"], true) require "pluginList"
print("Now PackerSync will be executed, after completion, restart neovim.\n")
require "highlights" vim.cmd("PackerSync")
require "mappings" end
require "plugins.bufferline"
require("utils").hideStuff()

@ -33,36 +33,6 @@ _check_nvim_version() {
done done
} }
_setup_packer() {
_clone_packer() {
[ -d "${_PACKER_PATH}" ] && rm -rf "${_PACKER_PATH}"
printf "\n%s\n" "=> Cloning packer.."
if "${_GIT}" clone "${_PACKER_REPO_URL}" \
"${_PACKER_PATH}" --depth 20; then
printf "%s\n" "=> Packer Installed!"
else
printf "Error: Couldn't clone packer\n"
exit 1
fi
}
if [ "${_UPDATE}" = "true" ]; then
printf "%s\n" "Updating packer"
{ [ -d "${_PACKER_PATH}" ] \
&& "${_GIT}" -C "${_PACKER_PATH}" pull "${_PACKER_REPO_URL}"; } || _clone_packer
else
printf "%s\n" "Installing packer"
if [ -d ~/.local/share/nvim/site/pack/packer ]; then
printf "%s\n" "Clearing previous packer installs"
rm -rf ~/.local/share/nvim/site/pack
fi
_clone_packer
fi
printf "\n"
return 0
}
_copy_config() { _copy_config() {
printf "%s\n" "Linking config" printf "%s\n" "Linking config"
printf "%s\n" "Old nvim config will be changed to nvim.bak if exists! :0" printf "%s\n" "Old nvim config will be changed to nvim.bak if exists! :0"
@ -72,6 +42,7 @@ _copy_config() {
printf "%s\n" "Nvim Directory exists" printf "%s\n" "Nvim Directory exists"
if [ "${_NO_BACKUP}" = "true" ]; then if [ "${_NO_BACKUP}" = "true" ]; then
printf "%s\n" "Skipping backup as --no-backup flag was passed.." printf "%s\n" "Skipping backup as --no-backup flag was passed.."
[ "${_UPDATE}" = "false" ] && rm -rf "${_CONFIG_PATH}"
else else
printf "%s\n" "Taking backup of existing config.." printf "%s\n" "Taking backup of existing config.."
mv "${_CONFIG_PATH}" "${_BACKUP_PATH}" || { mv "${_CONFIG_PATH}" "${_BACKUP_PATH}" || {
@ -80,7 +51,6 @@ _copy_config() {
exit 1 exit 1
} }
fi fi
printf "%s\n" "Creating new nvim directory"
else else
printf "%s\n" "Nvim Config doesn't exist so creating one" printf "%s\n" "Nvim Config doesn't exist so creating one"
fi fi
@ -124,8 +94,6 @@ _setup_terminal_shell() {
_setup_arguments() { _setup_arguments() {
# default variables to be used # default variables to be used
_PACKER_PATH="${HOME}/.local/share/nvim/site/pack/packer/start/packer.nvim"
_PACKER_REPO_URL="https://github.com/wbthomason/packer.nvim"
_CONFIG_PATH="${HOME}/.config/nvim" _CONFIG_PATH="${HOME}/.config/nvim"
_UPDATE="" _UPDATE=""
_BACKUP_PATH="${_CONFIG_PATH}.bak" _BACKUP_PATH="${_CONFIG_PATH}.bak"
@ -133,22 +101,22 @@ _setup_arguments() {
_CURRENT_SHELL="${SHELL##*/}" _CURRENT_SHELL="${SHELL##*/}"
_check_longoptions() { _check_longoptions() {
[ -z "${2}" ] \ [ -z "${2}" ] &&
&& printf '%s: %s: option requires an argument\nTry '"%s -h/--help"' for more information.\n' "${0##*/}" "${1}" "${0##*/}" \ printf '%s: %s: option requires an argument\nTry '"%s -h/--help"' for more information.\n' "${0##*/}" "${1}" "${0##*/}" &&
&& exit 1 exit 1
return 0 return 0
} }
while [ $# -gt 0 ]; do while [ $# -gt 0 ]; do
case "${1}" in case "${1}" in
-h | --help) _usage ;; -h | --help) _usage ;;
-i | --install) _UPDATE="false" ;; -i | --install) _UPDATE="false" ;;
-u | --update) _UPDATE="true" ;; -u | --update) _UPDATE="true" ;;
-b | --backup) -b | --backup)
_check_longoptions "${1}" "${2}" _check_longoptions "${1}" "${2}"
_BACKUP_PATH="${2}" && shift _BACKUP_PATH="${2}" && shift
;; ;;
-nb | --nobackup) _NO_BACKUP="true" ;; -nb | --nobackup) _NO_BACKUP="true" ;;
esac esac
shift shift
done done
@ -178,22 +146,23 @@ main() {
_check_install_dependencies _check_install_dependencies
_setup_arguments "${@}" _setup_arguments "${@}"
_setup_packer
_copy_config _copy_config
_setup_terminal_shell [ "${_UPDATE}" = "false" ] && _setup_terminal_shell
# install all plugins + compile them # install all plugins + compile them
if _NVIM="$(command -v nvim)"; then if _NVIM="$(command -v nvim)"; then
if _check_nvim_version; then if _check_nvim_version; then
printf "\n%s\n" "=> Neovim will open with some errors, just press enter" && sleep 1 printf "\n%s\n" "=> Neovim will now open." && sleep 1
"${_NVIM}" +PackerSync if [ "${_UPDATE}" = "false" ]; then
"${_NVIM}" +":lua require 'pluginList' vim.cmd('PackerSync')"
else
"${_NVIM}"
fi
else else
printf "Error: Neovim is installed, but version is lower than 0.5.x, install Neovim >= 5.x and then run the below command.\n" printf "Error: Neovim is installed, but version is lower than 0.5.x, install Neovim >= 5.x and then run nvim & do :PackerSync\n."
printf " nvim +PackerSync\n"
fi fi
else else
printf "Error: Neovim is not installed, install Neovim >= 5.x and then run the below command\n" printf "Error: Neovim is not installed, install Neovim >= 5.x and then run neovim & do :PackerSync.\n"
printf " nvim +PackerSync\n"
fi fi
} }

@ -76,7 +76,17 @@ _G.s_tab_complete = function()
end end
function _G.completions() function _G.completions()
local npairs = require("nvim-autopairs") local npairs
if
not pcall(
function()
npairs = require "nvim-autopairs"
end
)
then
return
end
if vim.fn.pumvisible() == 1 then if vim.fn.pumvisible() == 1 then
if vim.fn.complete_info()["selected"] ~= -1 then if vim.fn.complete_info()["selected"] ~= -1 then
return vim.fn["compe#confirm"]("<CR>") return vim.fn["compe#confirm"]("<CR>")

@ -1,4 +1,5 @@
local opt = vim.opt local opt = vim.opt
local g = vim.g
opt.ruler = false opt.ruler = false
opt.hidden = true opt.hidden = true
@ -14,6 +15,12 @@ opt.updatetime = 250 -- update interval for gitsigns
opt.timeoutlen = 400 opt.timeoutlen = 400
opt.clipboard = "unnamedplus" opt.clipboard = "unnamedplus"
-- disable nvim intro
opt.shortmess:append("sI")
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
vim.cmd [[let &fcs='eob: ']]
-- Numbers -- Numbers
opt.number = true opt.number = true
opt.numberwidth = 2 opt.numberwidth = 2
@ -24,17 +31,20 @@ opt.expandtab = true
opt.shiftwidth = 2 opt.shiftwidth = 2
opt.smartindent = true opt.smartindent = true
g.mapleader = " "
g.auto_save = false
-- disable builtin vim plugins -- disable builtin vim plugins
vim.g.loaded_gzip = 0 g.loaded_gzip = 0
vim.g.loaded_tar = 0 g.loaded_tar = 0
vim.g.loaded_tarPlugin = 0 g.loaded_tarPlugin = 0
vim.g.loaded_zipPlugin = 0 g.loaded_zipPlugin = 0
vim.g.loaded_2html_plugin = 0 g.loaded_2html_plugin = 0
vim.g.loaded_netrw = 0 g.loaded_netrw = 0
vim.g.loaded_netrwPlugin = 0 g.loaded_netrwPlugin = 0
vim.g.loaded_matchit = 0 g.loaded_matchit = 0
vim.g.loaded_matchparen = 0 g.loaded_matchparen = 0
vim.g.loaded_spec = 0 g.loaded_spec = 0
local M = {} local M = {}

@ -0,0 +1,45 @@
local packer
if
not pcall(
function()
packer = require "packer"
end
)
then
local packer_path = vim.fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
print("Cloning packer..")
-- remove the dir before cloning
vim.fn.delete(packer_path, "rf")
vim.fn.system(
{
"git",
"clone",
"https://github.com/wbthomason/packer.nvim",
"--depth",
"20",
packer_path
}
)
if pcall(
function()
packer = require "packer"
end
)
then
print("Packer cloned successfully.")
else
error("Couldn't clone packer !\nPacker path: " .. packer_path)
end
end
return packer.init {
display = {
open_fn = function()
return require("packer.util").float {border = "single"}
end
},
git = {
clone_timeout = 600 -- Timeout, in seconds, for git clones
}
}

@ -1,16 +1,17 @@
local packer = require("packer") local packer
local use = packer.use if
pcall(
packer.init { function()
display = { require "packerInit"
open_fn = function()
return require("packer.util").float {border = "single"}
end end
}, )
git = { then
clone_timeout = 600 -- Timeout, in seconds, for git clones packer = require "packer"
} else
} return false
end
local use = packer.use
return packer.startup( return packer.startup(
function() function()
@ -21,7 +22,7 @@ return packer.startup(
use { use {
"glepnir/galaxyline.nvim", "glepnir/galaxyline.nvim",
config = function() config = function()
require("plugins.statusline").config() require "plugins.statusline"
end end
} }
@ -32,8 +33,7 @@ return packer.startup(
"norcalli/nvim-colorizer.lua", "norcalli/nvim-colorizer.lua",
event = "BufRead", event = "BufRead",
config = function() config = function()
require("colorizer").setup() require "plugins.colorizer"
vim.cmd("ColorizerReloadAllBuffers")
end end
} }
@ -42,7 +42,7 @@ return packer.startup(
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
event = "BufRead", event = "BufRead",
config = function() config = function()
require("plugins.treesitter").config() require "plugins.treesitter"
end end
} }
@ -55,7 +55,7 @@ return packer.startup(
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
after = "nvim-lspinstall", after = "nvim-lspinstall",
config = function() config = function()
require("plugins.lspconfig").config() require "plugins.lspconfig"
end end
} }
@ -63,7 +63,7 @@ return packer.startup(
"onsails/lspkind-nvim", "onsails/lspkind-nvim",
event = "BufRead", event = "BufRead",
config = function() config = function()
require("lspkind").init() require "plugins.lspkind"
end end
} }
@ -72,7 +72,7 @@ return packer.startup(
"hrsh7th/nvim-compe", "hrsh7th/nvim-compe",
event = "InsertEnter", event = "InsertEnter",
config = function() config = function()
require("plugins.compe").config() require "plugins.compe"
end, end,
wants = {"LuaSnip"}, wants = {"LuaSnip"},
requires = { requires = {
@ -81,7 +81,7 @@ return packer.startup(
wants = "friendly-snippets", wants = "friendly-snippets",
event = "InsertCharPre", event = "InsertCharPre",
config = function() config = function()
require("plugins.compe").snippets() require "plugins.luasnip"
end end
}, },
{ {
@ -98,14 +98,14 @@ return packer.startup(
"kyazdani42/nvim-tree.lua", "kyazdani42/nvim-tree.lua",
cmd = "NvimTreeToggle", cmd = "NvimTreeToggle",
config = function() config = function()
require("plugins.nvimtree").config() require "plugins.nvimtree"
end end
} }
use { use {
"kyazdani42/nvim-web-devicons", "kyazdani42/nvim-web-devicons",
config = function() config = function()
require("plugins.icons").config() require "plugins.icons"
end end
} }
@ -117,7 +117,7 @@ return packer.startup(
}, },
cmd = "Telescope", cmd = "Telescope",
config = function() config = function()
require("plugins.telescope").config() require "plugins.telescope"
end end
} }
@ -133,7 +133,7 @@ return packer.startup(
"lewis6991/gitsigns.nvim", "lewis6991/gitsigns.nvim",
event = "BufRead", event = "BufRead",
config = function() config = function()
require("plugins.gitsigns").config() require "plugins.gitsigns"
end end
} }
@ -142,13 +142,7 @@ return packer.startup(
"windwp/nvim-autopairs", "windwp/nvim-autopairs",
after = "nvim-compe", after = "nvim-compe",
config = function() config = function()
require("nvim-autopairs").setup() require "plugins.autopairs"
require("nvim-autopairs.completion.compe").setup(
{
map_cr = true,
map_complete = true -- insert () func completion
}
)
end end
} }
@ -158,7 +152,7 @@ return packer.startup(
"terrortylor/nvim-comment", "terrortylor/nvim-comment",
cmd = "CommentToggle", cmd = "CommentToggle",
config = function() config = function()
require("nvim_comment").setup() require "plugins.comment"
end end
} }
@ -172,7 +166,7 @@ return packer.startup(
"SessionSave" "SessionSave"
}, },
setup = function() setup = function()
require("plugins.dashboard").config() require "plugins.dashboard"
end end
} }
@ -182,7 +176,7 @@ return packer.startup(
use { use {
"Pocco81/AutoSave.nvim", "Pocco81/AutoSave.nvim",
config = function() config = function()
require("plugins.zenmode").autoSave() require "plugins.autosave"
end, end,
cond = function() cond = function()
return vim.g.auto_save == true return vim.g.auto_save == true
@ -194,7 +188,7 @@ return packer.startup(
"karb94/neoscroll.nvim", "karb94/neoscroll.nvim",
event = "WinScrolled", event = "WinScrolled",
config = function() config = function()
require("neoscroll").setup() require "plugins.neoscroll"
end end
} }
@ -202,7 +196,7 @@ return packer.startup(
"Pocco81/TrueZen.nvim", "Pocco81/TrueZen.nvim",
cmd = {"TZAtaraxis", "TZMinimalist", "TZFocus"}, cmd = {"TZAtaraxis", "TZMinimalist", "TZFocus"},
config = function() config = function()
require("plugins.zenmode").config() require "plugins.zenmode"
end end
} }
@ -212,7 +206,7 @@ return packer.startup(
"lukas-reineke/indent-blankline.nvim", "lukas-reineke/indent-blankline.nvim",
event = "BufRead", event = "BufRead",
setup = function() setup = function()
require("utils").blankline() require "plugins.blankline"
end end
} }
end end

@ -0,0 +1,19 @@
local autopairs, autopairs_completion
if
not pcall(
function()
autopairs = require "nvim-autopairs"
autopairs_completion = require "nvim-autopairs.completion.compe"
end
)
then
return
end
autopairs.setup()
autopairs_completion.setup(
{
map_cr = true,
map_complete = true -- insert () func completion
}
)

@ -0,0 +1,27 @@
-- autosave.nvim plugin disabled by default
local autosave
if
not pcall(
function()
func = require "autosave"
end
)
then
return
end
autosave.setup(
{
enabled = vim.g.auto_save, -- takes boolean value from init.lua
execution_message = "autosaved at : " .. vim.fn.strftime("%H:%M:%S"),
events = {"InsertLeave", "TextChanged"},
conditions = {
exists = true,
filetype_is_not = {},
modifiable = true
},
write_all_buffers = true,
on_off_commands = true,
clean_command_line_interval = 2500
}
)

@ -0,0 +1,9 @@
-- 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,7 +1,18 @@
local global_theme = "themes/" .. vim.g.nvchad_theme local global_theme = "themes/" .. vim.g.nvchad_theme
local colors = require(global_theme) local colors = require(global_theme)
require "bufferline".setup { local bufferline
if
not pcall(
function()
bufferline = require "bufferline"
end
)
then
return
end
bufferline.setup {
options = { options = {
offsets = {{filetype = "NvimTree", text = "", padding = 1}}, offsets = {{filetype = "NvimTree", text = "", padding = 1}},
buffer_close_icon = "", buffer_close_icon = "",

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

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

@ -1,38 +1,31 @@
local M = {} local compe
if
M.config = function() not pcall(
require "compe".setup { function()
enabled = true, compe = require "compe"
autocomplete = true, end
debug = false,
min_length = 1,
preselect = "enable",
throttle_time = 80,
source_timeout = 200,
incomplete_delay = 400,
max_abbr_width = 100,
max_kind_width = 100,
max_menu_width = 100,
documentation = true,
source = {
buffer = {kind = "", true},
luasnip = {kind = "", true},
nvim_lsp = true,
nvim_lua = true
}
}
end
M.snippets = function()
local ls = require("luasnip")
ls.config.set_config(
{
history = true,
updateevents = "TextChanged,TextChangedI"
}
) )
require("luasnip/loaders/from_vscode").load() then
return
end end
return M compe.setup {
enabled = true,
autocomplete = true,
debug = false,
min_length = 1,
preselect = "enable",
throttle_time = 80,
source_timeout = 200,
incomplete_delay = 400,
max_abbr_width = 100,
max_kind_width = 100,
max_menu_width = 100,
documentation = true,
source = {
buffer = {kind = "", true},
luasnip = {kind = "", true},
nvim_lsp = true,
nvim_lua = true
}
}

@ -1,46 +1,40 @@
local M = {} local g = vim.g
local fn = vim.fn
M.config = function() local plugins_count = fn.len(fn.globpath("~/.local/share/nvim/site/pack/packer/start", "*", 0, 1))
local g = vim.g
local fn = vim.fn
local plugins_count = fn.len(fn.globpath("~/.local/share/nvim/site/pack/packer/start", "*", 0, 1)) g.dashboard_disable_at_vimenter = 1 -- dashboard is disabled by default
g.dashboard_disable_statusline = 1
g.dashboard_default_executive = "telescope"
g.dashboard_custom_header = {
" ",
" ",
" ",
" ⣴⣶⣤⡤⠦⣤⣀⣤⠆ ⣈⣭⣿⣶⣿⣦⣼⣆ ",
" ⠉⠻⢿⣿⠿⣿⣿⣶⣦⠤⠄⡠⢾⣿⣿⡿⠋⠉⠉⠻⣿⣿⡛⣦ ",
" ⠈⢿⣿⣟⠦ ⣾⣿⣿⣷ ⠻⠿⢿⣿⣧⣄ ",
" ⣸⣿⣿⢧ ⢻⠻⣿⣿⣷⣄⣀⠄⠢⣀⡀⠈⠙⠿⠄ ",
" ⢠⣿⣿⣿⠈ ⣻⣿⣿⣿⣿⣿⣿⣿⣛⣳⣤⣀⣀ ",
" ⢠⣧⣶⣥⡤⢄ ⣸⣿⣿⠘ ⢀⣴⣿⣿⡿⠛⣿⣿⣧⠈⢿⠿⠟⠛⠻⠿⠄ ",
" ⣰⣿⣿⠛⠻⣿⣿⡦⢹⣿⣷ ⢊⣿⣿⡏ ⢸⣿⣿⡇ ⢀⣠⣄⣾⠄ ",
" ⣠⣿⠿⠛ ⢀⣿⣿⣷⠘⢿⣿⣦⡀ ⢸⢿⣿⣿⣄ ⣸⣿⣿⡇⣪⣿⡿⠿⣿⣷⡄ ",
" ⠙⠃ ⣼⣿⡟ ⠈⠻⣿⣿⣦⣌⡇⠻⣿⣿⣷⣿⣿⣿ ⣿⣿⡇ ⠛⠻⢷⣄ ",
" ⢻⣿⣿⣄ ⠈⠻⣿⣿⣿⣷⣿⣿⣿⣿⣿⡟ ⠫⢿⣿⡆ ",
" ⠻⣿⣿⣿⣿⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⡟⢀⣀⣤⣾⡿⠃ ",
" "
}
g.dashboard_disable_at_vimenter = 1 -- dashboard is disabled by default g.dashboard_custom_section = {
g.dashboard_disable_statusline = 1 a = {description = {" Find File SPC f f"}, command = "Telescope find_files"},
g.dashboard_default_executive = "telescope" b = {description = {" Recents SPC f o"}, command = "Telescope oldfiles"},
g.dashboard_custom_header = { c = {description = {" Find Word SPC f w"}, command = "Telescope live_grep"},
" ", d = {description = {"洛 New File SPC f n"}, command = "DashboardNewFile"},
" ", e = {description = {" Bookmarks SPC b m"}, command = "Telescope marks"},
" ", f = {description = {" Load Last Session SPC s l"}, command = "SessionLoad"}
" ⣴⣶⣤⡤⠦⣤⣀⣤⠆ ⣈⣭⣿⣶⣿⣦⣼⣆ ", }
" ⠉⠻⢿⣿⠿⣿⣿⣶⣦⠤⠄⡠⢾⣿⣿⡿⠋⠉⠉⠻⣿⣿⡛⣦ ",
" ⠈⢿⣿⣟⠦ ⣾⣿⣿⣷ ⠻⠿⢿⣿⣧⣄ ",
" ⣸⣿⣿⢧ ⢻⠻⣿⣿⣷⣄⣀⠄⠢⣀⡀⠈⠙⠿⠄ ",
" ⢠⣿⣿⣿⠈ ⣻⣿⣿⣿⣿⣿⣿⣿⣛⣳⣤⣀⣀ ",
" ⢠⣧⣶⣥⡤⢄ ⣸⣿⣿⠘ ⢀⣴⣿⣿⡿⠛⣿⣿⣧⠈⢿⠿⠟⠛⠻⠿⠄ ",
" ⣰⣿⣿⠛⠻⣿⣿⡦⢹⣿⣷ ⢊⣿⣿⡏ ⢸⣿⣿⡇ ⢀⣠⣄⣾⠄ ",
" ⣠⣿⠿⠛ ⢀⣿⣿⣷⠘⢿⣿⣦⡀ ⢸⢿⣿⣿⣄ ⣸⣿⣿⡇⣪⣿⡿⠿⣿⣷⡄ ",
" ⠙⠃ ⣼⣿⡟ ⠈⠻⣿⣿⣦⣌⡇⠻⣿⣿⣷⣿⣿⣿ ⣿⣿⡇ ⠛⠻⢷⣄ ",
" ⢻⣿⣿⣄ ⠈⠻⣿⣿⣿⣷⣿⣿⣿⣿⣿⡟ ⠫⢿⣿⡆ ",
" ⠻⣿⣿⣿⣿⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⡟⢀⣀⣤⣾⡿⠃ ",
" "
}
g.dashboard_custom_section = { g.dashboard_custom_footer = {
a = {description = {" Find File SPC f f"}, command = "Telescope find_files"}, " ",
b = {description = {" Recents SPC f o"}, command = "Telescope oldfiles"}, -- "NvChad Loaded " .. plugins_count .. " plugins",
c = {description = {" Find Word SPC f w"}, command = "Telescope live_grep"}, "NvChad v0.5"
d = {description = {"洛 New File SPC f n"}, command = "DashboardNewFile"}, }
e = {description = {" Bookmarks SPC b m"}, command = "Telescope marks"},
f = {description = {" Load Last Session SPC s l"}, command = "SessionLoad"}
}
g.dashboard_custom_footer = {
" ",
-- "NvChad Loaded " .. plugins_count .. " plugins",
"NvChad v0.5"
}
end
return M

@ -1,33 +1,38 @@
local M = {} local gitsigns
if
M.config = function() not pcall(
require("gitsigns").setup { function()
signs = { gitsigns = require "gitsigns"
add = {hl = "DiffAdd", text = "", numhl = "GitSignsAddNr"}, end
change = {hl = "DiffChange", text = "", numhl = "GitSignsChangeNr"}, )
delete = {hl = "DiffDelete", text = "_", numhl = "GitSignsDeleteNr"}, then
topdelete = {hl = "DiffDelete", text = "", numhl = "GitSignsDeleteNr"}, return
changedelete = {hl = "DiffChange", text = "~", numhl = "GitSignsChangeNr"}
},
numhl = false,
keymaps = {
-- Default keymap options
noremap = true,
buffer = true,
["n ]c"] = {expr = true, '&diff ? \']c\' : \'<cmd>lua require"gitsigns".next_hunk()<CR>\''},
["n [c"] = {expr = true, '&diff ? \'[c\' : \'<cmd>lua require"gitsigns".prev_hunk()<CR>\''},
["n <leader>hs"] = '<cmd>lua require"gitsigns".stage_hunk()<CR>',
["n <leader>hu"] = '<cmd>lua require"gitsigns".undo_stage_hunk()<CR>',
["n <leader>hr"] = '<cmd>lua require"gitsigns".reset_hunk()<CR>',
["n <leader>hp"] = '<cmd>lua require"gitsigns".preview_hunk()<CR>',
["n <leader>hb"] = '<cmd>lua require"gitsigns".blame_line()<CR>'
},
watch_index = {
interval = 100
},
sign_priority = 5,
status_formatter = nil -- Use default
}
end end
return M gitsigns.setup {
signs = {
add = {hl = "DiffAdd", text = "", numhl = "GitSignsAddNr"},
change = {hl = "DiffChange", text = "", numhl = "GitSignsChangeNr"},
delete = {hl = "DiffDelete", text = "_", numhl = "GitSignsDeleteNr"},
topdelete = {hl = "DiffDelete", text = "", numhl = "GitSignsDeleteNr"},
changedelete = {hl = "DiffChange", text = "~", numhl = "GitSignsChangeNr"}
},
numhl = false,
keymaps = {
-- Default keymap options
noremap = true,
buffer = true,
["n ]c"] = {expr = true, '&diff ? \']c\' : \'<cmd>lua require"gitsigns".next_hunk()<CR>\''},
["n [c"] = {expr = true, '&diff ? \'[c\' : \'<cmd>lua require"gitsigns".prev_hunk()<CR>\''},
["n <leader>hs"] = '<cmd>lua require"gitsigns".stage_hunk()<CR>',
["n <leader>hu"] = '<cmd>lua require"gitsigns".undo_stage_hunk()<CR>',
["n <leader>hr"] = '<cmd>lua require"gitsigns".reset_hunk()<CR>',
["n <leader>hp"] = '<cmd>lua require"gitsigns".preview_hunk()<CR>',
["n <leader>hb"] = '<cmd>lua require"gitsigns".blame_line()<CR>'
},
watch_index = {
interval = 100
},
sign_priority = 5,
status_formatter = nil -- Use default
}

@ -1,123 +1,128 @@
local M = {} local icons
if
not pcall(
function()
icons = require "nvim-web-devicons"
end
)
then
return
end
M.config = function() local global_theme = "themes/" .. vim.g.nvchad_theme
local global_theme = "themes/" .. vim.g.nvchad_theme local colors = require(global_theme)
local colors = require(global_theme)
require "nvim-web-devicons".setup { icons.setup {
override = { override = {
html = { html = {
icon = "", icon = "",
color = colors.baby_pink, color = colors.baby_pink,
name = "html" name = "html"
}, },
css = { css = {
icon = "", icon = "",
color = colors.blue, color = colors.blue,
name = "css" name = "css"
}, },
js = { js = {
icon = "", icon = "",
color = colors.sun, color = colors.sun,
name = "js" name = "js"
}, },
ts = { ts = {
icon = "", icon = "",
color = colors.teal, color = colors.teal,
name = "ts" name = "ts"
}, },
kt = { kt = {
icon = "󱈙", icon = "󱈙",
color = colors.orange, color = colors.orange,
name = "kt" name = "kt"
}, },
png = { png = {
icon = "", icon = "",
color = colors.dark_purple, color = colors.dark_purple,
name = "png" name = "png"
}, },
jpg = { jpg = {
icon = "", icon = "",
color = colors.dark_purple, color = colors.dark_purple,
name = "jpg" name = "jpg"
}, },
jpeg = { jpeg = {
icon = "", icon = "",
color = colors.dark_purple, color = colors.dark_purple,
name = "jpeg" name = "jpeg"
}, },
mp3 = { mp3 = {
icon = "", icon = "",
color = colors.white, color = colors.white,
name = "mp3" name = "mp3"
}, },
mp4 = { mp4 = {
icon = "", icon = "",
color = colors.white, color = colors.white,
name = "mp4" name = "mp4"
}, },
out = { out = {
icon = "", icon = "",
color = colors.white, color = colors.white,
name = "out" name = "out"
}, },
Dockerfile = { Dockerfile = {
icon = "", icon = "",
color = colors.cyan, color = colors.cyan,
name = "Dockerfile" name = "Dockerfile"
}, },
rb = { rb = {
icon = "", icon = "",
color = colors.pink, color = colors.pink,
name = "rb" name = "rb"
}, },
vue = { vue = {
icon = "", icon = "",
color = colors.vibrant_green, color = colors.vibrant_green,
name = "vue" name = "vue"
}, },
py = { py = {
icon = "", icon = "",
color = colors.cyan, color = colors.cyan,
name = "py" name = "py"
}, },
toml = { toml = {
icon = "", icon = "",
color = colors.blue, color = colors.blue,
name = "toml" name = "toml"
}, },
lock = { lock = {
icon = "", icon = "",
color = colors.red, color = colors.red,
name = "lock" name = "lock"
}, },
zip = { zip = {
icon = "", icon = "",
color = colors.sun, color = colors.sun,
name = "zip" name = "zip"
}, },
xz = { xz = {
icon = "", icon = "",
color = colors.sun, color = colors.sun,
name = "xz" name = "xz"
}, },
deb = { deb = {
icon = "", icon = "",
color = colors.cyan, color = colors.cyan,
name = "deb" name = "deb"
}, },
rpm = { rpm = {
icon = "", icon = "",
color = colors.orange, color = colors.orange,
name = "rpm" name = "rpm"
}, },
lua = { lua = {
icon = "", icon = "",
color = colors.blue, color = colors.blue,
name = "lua" name = "lua"
}
} }
} }
end }
return M

@ -1,98 +1,102 @@
local M = {} local lspconfig, lspinstall
if
M.config = function() not pcall(
local lspconf = require("lspconfig") function()
lspconfig = require "lspconfig"
lspinstall = require "lspinstall"
end
)
then
return
end
local function on_attach(client, bufnr) local function on_attach(client, bufnr)
vim.api.nvim_buf_set_option(bufnr, "omnifunc", "v:lua.vim.lsp.omnifunc") vim.api.nvim_buf_set_option(bufnr, "omnifunc", "v:lua.vim.lsp.omnifunc")
local opts = {noremap = true, silent = true} local opts = {noremap = true, silent = true}
local function buf_set_keymap(...) local function buf_set_keymap(...)
vim.api.nvim_buf_set_keymap(bufnr, ...) vim.api.nvim_buf_set_keymap(bufnr, ...)
end end
-- Mappings. -- Mappings.
buf_set_keymap("n", "gD", "<Cmd>lua vim.lsp.buf.declaration()<CR>", opts) buf_set_keymap("n", "gD", "<Cmd>lua vim.lsp.buf.declaration()<CR>", opts)
buf_set_keymap("n", "gd", "<Cmd>lua vim.lsp.buf.definition()<CR>", opts) buf_set_keymap("n", "gd", "<Cmd>lua vim.lsp.buf.definition()<CR>", opts)
buf_set_keymap("n", "K", "<Cmd>lua vim.lsp.buf.hover()<CR>", opts) buf_set_keymap("n", "K", "<Cmd>lua vim.lsp.buf.hover()<CR>", opts)
buf_set_keymap("n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts) buf_set_keymap("n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opts)
buf_set_keymap("n", "<C-k>", "<cmd>lua vim.lsp.buf.signature_help()<CR>", opts) buf_set_keymap("n", "<C-k>", "<cmd>lua vim.lsp.buf.signature_help()<CR>", opts)
buf_set_keymap("n", "<space>wa", "<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>", opts) buf_set_keymap("n", "<space>wa", "<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>", opts)
buf_set_keymap("n", "<space>wr", "<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>", opts) buf_set_keymap("n", "<space>wr", "<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>", opts)
buf_set_keymap("n", "<space>wl", "<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>", opts) buf_set_keymap("n", "<space>wl", "<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>", opts)
buf_set_keymap("n", "<space>D", "<cmd>lua vim.lsp.buf.type_definition()<CR>", opts) buf_set_keymap("n", "<space>D", "<cmd>lua vim.lsp.buf.type_definition()<CR>", opts)
buf_set_keymap("n", "<space>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opts) buf_set_keymap("n", "<space>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opts)
buf_set_keymap("n", "gr", "<cmd>lua vim.lsp.buf.references()<CR>", opts) buf_set_keymap("n", "gr", "<cmd>lua vim.lsp.buf.references()<CR>", opts)
buf_set_keymap("n", "<space>e", "<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>", opts) buf_set_keymap("n", "<space>e", "<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>", opts)
buf_set_keymap("n", "[d", "<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>", opts) buf_set_keymap("n", "[d", "<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>", opts)
buf_set_keymap("n", "]d", "<cmd>lua vim.lsp.diagnostic.goto_next()<CR>", opts) buf_set_keymap("n", "]d", "<cmd>lua vim.lsp.diagnostic.goto_next()<CR>", opts)
buf_set_keymap("n", "<space>q", "<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>", opts) buf_set_keymap("n", "<space>q", "<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>", opts)
-- Set some keybinds conditional on server capabilities -- Set some keybinds conditional on server capabilities
if client.resolved_capabilities.document_formatting then if client.resolved_capabilities.document_formatting then
buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts) buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.formatting()<CR>", opts)
elseif client.resolved_capabilities.document_range_formatting then elseif client.resolved_capabilities.document_range_formatting then
buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.range_formatting()<CR>", opts) buf_set_keymap("n", "<space>f", "<cmd>lua vim.lsp.buf.range_formatting()<CR>", opts)
end
end end
end
local capabilities = vim.lsp.protocol.make_client_capabilities() local capabilities = vim.lsp.protocol.make_client_capabilities()
capabilities.textDocument.completion.completionItem.snippetSupport = true capabilities.textDocument.completion.completionItem.snippetSupport = true
-- lspInstall + lspconfig stuff -- lspInstall + lspconfig stuff
local function setup_servers() local function setup_servers()
require "lspinstall".setup() lspinstall.setup()
local servers = require "lspinstall".installed_servers() local servers = lspinstall.installed_servers()
for _, lang in pairs(servers) do for _, lang in pairs(servers) do
if lang ~= "lua" then if lang ~= "lua" then
lspconf[lang].setup { lspconfig[lang].setup {
on_attach = on_attach, on_attach = on_attach,
capabilities = capabilities, capabilities = capabilities,
root_dir = vim.loop.cwd root_dir = vim.loop.cwd
} }
elseif lang == "lua" then elseif lang == "lua" then
lspconf[lang].setup { lspconfig[lang].setup {
root_dir = vim.loop.cwd, root_dir = vim.loop.cwd,
settings = { settings = {
Lua = { Lua = {
diagnostics = { diagnostics = {
globals = {"vim"} globals = {"vim"}
}, },
workspace = { workspace = {
library = { library = {
[vim.fn.expand("$VIMRUNTIME/lua")] = true, [vim.fn.expand("$VIMRUNTIME/lua")] = true,
[vim.fn.expand("$VIMRUNTIME/lua/vim/lsp")] = true [vim.fn.expand("$VIMRUNTIME/lua/vim/lsp")] = true
},
maxPreload = 100000,
preloadFileSize = 10000
}, },
telemetry = { maxPreload = 100000,
enable = false preloadFileSize = 10000
} },
telemetry = {
enable = false
} }
} }
} }
end }
end end
end end
end
setup_servers() setup_servers()
-- Automatically reload after `:LspInstall <server>` so we don't have to restart neovim
require "lspinstall".post_install_hook = function()
setup_servers() -- reload installed servers
vim.cmd("bufdo e") -- triggers FileType autocmd that starts the server
end
-- replace the default lsp diagnostic letters with prettier symbols -- Automatically reload after `:LspInstall <server>` so we don't have to restart neovim
vim.fn.sign_define("LspDiagnosticsSignError", {text = "", numhl = "LspDiagnosticsDefaultError"}) lspinstall.post_install_hook = function()
vim.fn.sign_define("LspDiagnosticsSignWarning", {text = "", numhl = "LspDiagnosticsDefaultWarning"}) setup_servers() -- reload installed servers
vim.fn.sign_define("LspDiagnosticsSignInformation", {text = "", numhl = "LspDiagnosticsDefaultInformation"}) vim.cmd("bufdo e") -- triggers FileType autocmd that starts the server
vim.fn.sign_define("LspDiagnosticsSignHint", {text = "", numhl = "LspDiagnosticsDefaultHint"})
end end
return M -- replace the default lsp diagnostic letters with prettier symbols
vim.fn.sign_define("LspDiagnosticsSignError", {text = "", numhl = "LspDiagnosticsDefaultError"})
vim.fn.sign_define("LspDiagnosticsSignWarning", {text = "", numhl = "LspDiagnosticsDefaultWarning"})
vim.fn.sign_define("LspDiagnosticsSignInformation", {text = "", numhl = "LspDiagnosticsDefaultInformation"})
vim.fn.sign_define("LspDiagnosticsSignHint", {text = "", numhl = "LspDiagnosticsDefaultHint"})

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

@ -0,0 +1,18 @@
local luasnip
if
not pcall(
function()
luasnip = require "luasnip"
end
)
then
return
end
luasnip.config.set_config(
{
history = true,
updateevents = "TextChanged,TextChangedI"
}
)
require("luasnip/loaders/from_vscode").load()

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

@ -1,97 +1,100 @@
local M = {} local tree_cb
if
M.config = function() not pcall(
local g = vim.g function()
tree_cb = require "nvim-tree.config".nvim_tree_callback
vim.o.termguicolors = true end
)
then
return
end
g.nvim_tree_side = "left" local g = vim.g
g.nvim_tree_width = 25
g.nvim_tree_ignore = {".git", "node_modules", ".cache"}
g.nvim_tree_gitignore = 1
g.nvim_tree_auto_ignore_ft = {"dashboard"} -- don't open tree on specific fiypes.
g.nvim_tree_auto_open = 0
g.nvim_tree_auto_close = 0 -- closes tree when it's the last window
g.nvim_tree_quit_on_open = 0 -- closes tree when file's opened
g.nvim_tree_follow = 1
g.nvim_tree_indent_markers = 1
g.nvim_tree_hide_dotfiles = 1
g.nvim_tree_git_hl = 1
g.nvim_tree_highlight_opened_files = 0
g.nvim_tree_root_folder_modifier = ":t"
g.nvim_tree_tab_open = 0
g.nvim_tree_allow_resize = 1
g.nvim_tree_add_trailing = 0 -- append a trailing slash to folder names
g.nvim_tree_disable_netrw = 1
g.nvim_tree_hijack_netrw = 0
g.nvim_tree_update_cwd = 1
g.nvim_tree_show_icons = { vim.o.termguicolors = true
git = 1,
folders = 1,
files = 1
-- folder_arrows= 1
}
g.nvim_tree_icons = {
default = "",
symlink = "",
git = {
unstaged = "",
staged = "",
unmerged = "",
renamed = "",
untracked = "",
deleted = "",
ignored = ""
},
folder = {
-- disable indent_markers option to get arrows working or if you want both arrows and indent then just add the arrow icons in front ofthe default and opened folders below!
-- arrow_open = "",
-- arrow_closed = "",
default = "",
open = "",
empty = "", -- 
empty_open = "",
symlink = "",
symlink_open = ""
}
}
local tree_cb = require "nvim-tree.config".nvim_tree_callback g.nvim_tree_side = "left"
g.nvim_tree_width = 25
g.nvim_tree_ignore = {".git", "node_modules", ".cache"}
g.nvim_tree_gitignore = 1
g.nvim_tree_auto_ignore_ft = {"dashboard"} -- don't open tree on specific fiypes.
g.nvim_tree_auto_open = 0
g.nvim_tree_auto_close = 0 -- closes tree when it's the last window
g.nvim_tree_quit_on_open = 0 -- closes tree when file's opened
g.nvim_tree_follow = 1
g.nvim_tree_indent_markers = 1
g.nvim_tree_hide_dotfiles = 1
g.nvim_tree_git_hl = 1
g.nvim_tree_highlight_opened_files = 0
g.nvim_tree_root_folder_modifier = ":t"
g.nvim_tree_tab_open = 0
g.nvim_tree_allow_resize = 1
g.nvim_tree_add_trailing = 0 -- append a trailing slash to folder names
g.nvim_tree_disable_netrw = 1
g.nvim_tree_hijack_netrw = 0
g.nvim_tree_update_cwd = 1
g.nvim_tree_bindings = { g.nvim_tree_show_icons = {
{key = {"<CR>", "o", "<2-LeftMouse>"}, cb = tree_cb("edit")}, git = 1,
{key = {"<2-RightMouse>", "<C-}>"}, cb = tree_cb("cd")}, folders = 1,
{key = "<C-v>", cb = tree_cb("vsplit")}, files = 1
{key = "<C-x>", cb = tree_cb("split")}, -- folder_arrows= 1
{key = "<C-t>", cb = tree_cb("tabnew")}, }
{key = "<", cb = tree_cb("prev_sibling")}, g.nvim_tree_icons = {
{key = ">", cb = tree_cb("next_sibling")}, default = "",
{key = "P", cb = tree_cb("parent_node")}, symlink = "",
{key = "<BS>", cb = tree_cb("close_node")}, git = {
{key = "<S-CR>", cb = tree_cb("close_node")}, unstaged = "",
{key = "<Tab>", cb = tree_cb("preview")}, staged = "",
{key = "K", cb = tree_cb("first_sibling")}, unmerged = "",
{key = "J", cb = tree_cb("last_sibling")}, renamed = "",
{key = "I", cb = tree_cb("toggle_ignored")}, untracked = "",
{key = "H", cb = tree_cb("toggle_dotfiles")}, deleted = "",
{key = "R", cb = tree_cb("refresh")}, ignored = ""
{key = "a", cb = tree_cb("create")}, },
{key = "d", cb = tree_cb("remove")}, folder = {
{key = "r", cb = tree_cb("rename")}, -- disable indent_markers option to get arrows working or if you want both arrows and indent then just add the arrow icons in front ofthe default and opened folders below!
{key = "<C->", cb = tree_cb("full_rename")}, -- arrow_open = "",
{key = "x", cb = tree_cb("cut")}, -- arrow_closed = "",
{key = "c", cb = tree_cb("copy")}, default = "",
{key = "p", cb = tree_cb("paste")}, open = "",
{key = "y", cb = tree_cb("copy_name")}, empty = "", -- 
{key = "Y", cb = tree_cb("copy_path")}, empty_open = "",
{key = "gy", cb = tree_cb("copy_absolute_path")}, symlink = "",
{key = "[c", cb = tree_cb("prev_git_item")}, symlink_open = ""
{key = "}c", cb = tree_cb("next_git_item")},
{key = "-", cb = tree_cb("dir_up")},
{key = "q", cb = tree_cb("close")},
{key = "g?", cb = tree_cb("toggle_help")}
} }
end }
return M g.nvim_tree_bindings = {
{key = {"<CR>", "o", "<2-LeftMouse>"}, cb = tree_cb("edit")},
{key = {"<2-RightMouse>", "<C-}>"}, cb = tree_cb("cd")},
{key = "<C-v>", cb = tree_cb("vsplit")},
{key = "<C-x>", cb = tree_cb("split")},
{key = "<C-t>", cb = tree_cb("tabnew")},
{key = "<", cb = tree_cb("prev_sibling")},
{key = ">", cb = tree_cb("next_sibling")},
{key = "P", cb = tree_cb("parent_node")},
{key = "<BS>", cb = tree_cb("close_node")},
{key = "<S-CR>", cb = tree_cb("close_node")},
{key = "<Tab>", cb = tree_cb("preview")},
{key = "K", cb = tree_cb("first_sibling")},
{key = "J", cb = tree_cb("last_sibling")},
{key = "I", cb = tree_cb("toggle_ignored")},
{key = "H", cb = tree_cb("toggle_dotfiles")},
{key = "R", cb = tree_cb("refresh")},
{key = "a", cb = tree_cb("create")},
{key = "d", cb = tree_cb("remove")},
{key = "r", cb = tree_cb("rename")},
{key = "<C->", cb = tree_cb("full_rename")},
{key = "x", cb = tree_cb("cut")},
{key = "c", cb = tree_cb("copy")},
{key = "p", cb = tree_cb("paste")},
{key = "y", cb = tree_cb("copy_name")},
{key = "Y", cb = tree_cb("copy_path")},
{key = "gy", cb = tree_cb("copy_absolute_path")},
{key = "[c", cb = tree_cb("prev_git_item")},
{key = "}c", cb = tree_cb("next_git_item")},
{key = "-", cb = tree_cb("dir_up")},
{key = "q", cb = tree_cb("close")},
{key = "g?", cb = tree_cb("toggle_help")}
}

@ -1,212 +1,217 @@
local M = {} local gl, condition
if
M.config = function() not pcall(
local gl = require("galaxyline") function()
local gls = gl.section gl = require "galaxyline"
local condition = require("galaxyline.condition") condition = require "galaxyline.condition"
gl.short_line_list = {" "}
local global_theme = "themes/" .. vim.g.nvchad_theme
local colors = require(global_theme)
gls.left[1] = {
FirstElement = {
provider = function()
return ""
end,
highlight = {colors.nord_blue, colors.nord_blue}
}
}
gls.left[2] = {
statusIcon = {
provider = function()
return ""
end,
highlight = {colors.statusline_bg, colors.nord_blue},
separator = "",
separator_highlight = {colors.nord_blue, colors.lightbg}
}
}
gls.left[3] = {
FileIcon = {
provider = "FileIcon",
condition = condition.buffer_not_empty,
highlight = {colors.white, colors.lightbg}
}
}
gls.left[4] = {
FileName = {
provider = {"FileName"},
condition = condition.buffer_not_empty,
highlight = {colors.white, colors.lightbg},
separator = "",
separator_highlight = {colors.lightbg, colors.lightbg2}
}
}
gls.left[5] = {
current_dir = {
provider = function()
local dir_name = vim.fn.fnamemodify(vim.fn.getcwd(), ":t")
return "" .. dir_name .. " "
end,
highlight = {colors.grey_fg2, colors.lightbg2},
separator = "",
separator_highlight = {colors.lightbg2, colors.statusline_bg}
}
}
local checkwidth = function()
local squeeze_width = vim.fn.winwidth(0) / 2
if squeeze_width > 30 then
return true
end end
return false )
end then
return
end
gls.left[6] = { local gls = gl.section
DiffAdd = {
provider = "DiffAdd", gl.short_line_list = {" "}
condition = checkwidth,
icon = "", local global_theme = "themes/" .. vim.g.nvchad_theme
highlight = {colors.white, colors.statusline_bg} local colors = require(global_theme)
}
} gls.left[1] = {
FirstElement = {
gls.left[7] = { provider = function()
DiffModified = { return ""
provider = "DiffModified", end,
condition = checkwidth, highlight = {colors.nord_blue, colors.nord_blue}
icon = "", }
highlight = {colors.grey_fg2, colors.statusline_bg} }
}
} gls.left[2] = {
statusIcon = {
gls.left[8] = { provider = function()
DiffRemove = { return ""
provider = "DiffRemove", end,
condition = checkwidth, highlight = {colors.statusline_bg, colors.nord_blue},
icon = "", separator = "",
highlight = {colors.grey_fg2, colors.statusline_bg} separator_highlight = {colors.nord_blue, colors.lightbg}
} }
} }
gls.left[9] = { gls.left[3] = {
DiagnosticError = { FileIcon = {
provider = "DiagnosticError", provider = "FileIcon",
icon = "", condition = condition.buffer_not_empty,
highlight = {colors.red, colors.statusline_bg} highlight = {colors.white, colors.lightbg}
} }
} }
gls.left[10] = { gls.left[4] = {
DiagnosticWarn = { FileName = {
provider = "DiagnosticWarn", provider = {"FileName"},
icon = "", condition = condition.buffer_not_empty,
highlight = {colors.yellow, colors.statusline_bg} highlight = {colors.white, colors.lightbg},
} separator = "",
} separator_highlight = {colors.lightbg, colors.lightbg2}
}
gls.right[1] = { }
lsp_status = {
provider = function() gls.left[5] = {
local clients = vim.lsp.get_active_clients() current_dir = {
if next(clients) ~= nil then provider = function()
return " " .. "" .. " LSP " local dir_name = vim.fn.fnamemodify(vim.fn.getcwd(), ":t")
else return "" .. dir_name .. " "
return "" end,
end highlight = {colors.grey_fg2, colors.lightbg2},
end, separator = "",
highlight = {colors.grey_fg2, colors.statusline_bg} separator_highlight = {colors.lightbg2, colors.statusline_bg}
} }
} }
gls.right[2] = { local checkwidth = function()
GitIcon = { local squeeze_width = vim.fn.winwidth(0) / 2
provider = function() if squeeze_width > 30 then
return "" return true
end, end
condition = require("galaxyline.condition").check_git_workspace, return false
highlight = {colors.grey_fg2, colors.statusline_bg},
separator = " ",
separator_highlight = {colors.statusline_bg, colors.statusline_bg}
}
}
gls.right[3] = {
GitBranch = {
provider = "GitBranch",
condition = require("galaxyline.condition").check_git_workspace,
highlight = {colors.grey_fg2, colors.statusline_bg}
}
}
gls.right[4] = {
viMode_icon = {
provider = function()
return ""
end,
highlight = {colors.statusline_bg, colors.red},
separator = "",
separator_highlight = {colors.red, colors.statusline_bg}
}
}
gls.right[5] = {
ViMode = {
provider = function()
local alias = {
n = "Normal",
i = "Insert",
c = "Command",
V = "Visual",
[""] = "Visual",
v = "Visual",
R = "Replace"
}
local current_Mode = alias[vim.fn.mode()]
if current_Mode == nil then
return " Terminal "
else
return " " .. current_Mode .. " "
end
end,
highlight = {colors.red, colors.lightbg}
}
}
gls.right[6] = {
some_icon = {
provider = function()
return ""
end,
separator = "",
separator_highlight = {colors.green, colors.lightbg},
highlight = {colors.lightbg, colors.green}
}
}
gls.right[7] = {
line_percentage = {
provider = function()
local current_line = vim.fn.line(".")
local total_line = vim.fn.line("$")
if current_line == 1 then
return " Top "
elseif current_line == vim.fn.line("$") then
return " Bot "
end
local result, _ = math.modf((current_line / total_line) * 100)
return " " .. result .. "% "
end,
highlight = {colors.green, colors.lightbg}
}
}
end end
return M
gls.left[6] = {
DiffAdd = {
provider = "DiffAdd",
condition = checkwidth,
icon = "",
highlight = {colors.white, colors.statusline_bg}
}
}
gls.left[7] = {
DiffModified = {
provider = "DiffModified",
condition = checkwidth,
icon = "",
highlight = {colors.grey_fg2, colors.statusline_bg}
}
}
gls.left[8] = {
DiffRemove = {
provider = "DiffRemove",
condition = checkwidth,
icon = "",
highlight = {colors.grey_fg2, colors.statusline_bg}
}
}
gls.left[9] = {
DiagnosticError = {
provider = "DiagnosticError",
icon = "",
highlight = {colors.red, colors.statusline_bg}
}
}
gls.left[10] = {
DiagnosticWarn = {
provider = "DiagnosticWarn",
icon = "",
highlight = {colors.yellow, colors.statusline_bg}
}
}
gls.right[1] = {
lsp_status = {
provider = function()
local clients = vim.lsp.get_active_clients()
if next(clients) ~= nil then
return " " .. "" .. " LSP "
else
return ""
end
end,
highlight = {colors.grey_fg2, colors.statusline_bg}
}
}
gls.right[2] = {
GitIcon = {
provider = function()
return ""
end,
condition = require("galaxyline.condition").check_git_workspace,
highlight = {colors.grey_fg2, colors.statusline_bg},
separator = " ",
separator_highlight = {colors.statusline_bg, colors.statusline_bg}
}
}
gls.right[3] = {
GitBranch = {
provider = "GitBranch",
condition = require("galaxyline.condition").check_git_workspace,
highlight = {colors.grey_fg2, colors.statusline_bg}
}
}
gls.right[4] = {
viMode_icon = {
provider = function()
return ""
end,
highlight = {colors.statusline_bg, colors.red},
separator = "",
separator_highlight = {colors.red, colors.statusline_bg}
}
}
gls.right[5] = {
ViMode = {
provider = function()
local alias = {
n = "Normal",
i = "Insert",
c = "Command",
V = "Visual",
[""] = "Visual",
v = "Visual",
R = "Replace"
}
local current_Mode = alias[vim.fn.mode()]
if current_Mode == nil then
return " Terminal "
else
return " " .. current_Mode .. " "
end
end,
highlight = {colors.red, colors.lightbg}
}
}
gls.right[6] = {
some_icon = {
provider = function()
return ""
end,
separator = "",
separator_highlight = {colors.green, colors.lightbg},
highlight = {colors.lightbg, colors.green}
}
}
gls.right[7] = {
line_percentage = {
provider = function()
local current_line = vim.fn.line(".")
local total_line = vim.fn.line("$")
if current_line == 1 then
return " Top "
elseif current_line == vim.fn.line("$") then
return " Bot "
end
local result, _ = math.modf((current_line / total_line) * 100)
return " " .. result .. "% "
end,
highlight = {colors.green, colors.lightbg}
}
}

@ -1,7 +1,16 @@
local M = {} local telescope
if
not pcall(
function()
telescope = require("telescope")
end
)
then
return
end
M.config = function() telescope.setup(
require("telescope").setup { {
defaults = { defaults = {
vimgrep_arguments = { vimgrep_arguments = {
"rg", "rg",
@ -32,9 +41,9 @@ M.config = function()
height = 0.80, height = 0.80,
preview_cutoff = 120 preview_cutoff = 120
}, },
file_sorter = require "telescope.sorters".get_fuzzy_file, file_sorter = require("telescope.sorters").get_fuzzy_file,
file_ignore_patterns = {}, file_ignore_patterns = {},
generic_sorter = require "telescope.sorters".get_generic_fuzzy_sorter, generic_sorter = require("telescope.sorters").get_generic_fuzzy_sorter,
path_display = shorten, path_display = shorten,
winblend = 0, winblend = 0,
border = {}, border = {},
@ -42,11 +51,11 @@ M.config = function()
color_devicons = true, color_devicons = true,
use_less = true, use_less = true,
set_env = {["COLORTERM"] = "truecolor"}, -- default = nil, set_env = {["COLORTERM"] = "truecolor"}, -- default = nil,
file_previewer = require "telescope.previewers".vim_buffer_cat.new, file_previewer = require("telescope.previewers").vim_buffer_cat.new,
grep_previewer = require "telescope.previewers".vim_buffer_vimgrep.new, grep_previewer = require("telescope.previewers").vim_buffer_vimgrep.new,
qflist_previewer = require "telescope.previewers".vim_buffer_qflist.new, qflist_previewer = require("telescope.previewers").vim_buffer_qflist.new,
-- Developer configurations: Not meant for general override -- Developer configurations: Not meant for general override
buffer_previewer_maker = require "telescope.previewers".buffer_previewer_maker buffer_previewer_maker = require("telescope.previewers").buffer_previewer_maker
}, },
extensions = { extensions = {
fzf = { fzf = {
@ -62,9 +71,16 @@ M.config = function()
} }
} }
} }
)
require("telescope").load_extension("fzf") if
require("telescope").load_extension("media_files") not pcall(
function()
telescope.load_extension("fzf")
telescope.load_extension("media_files")
end
)
then
-- This should only trigger when in need of PackerSync, so better do it
vim.cmd("PackerSync")
end end
return M

@ -1,25 +1,28 @@
local M = {} local ts_config
if
M.config = function() not pcall(
local ts_config = require("nvim-treesitter.configs") function()
ts_config = require "nvim-treesitter.configs"
ts_config.setup { end
ensure_installed = { )
"javascript", then
"html", return
"css",
"bash",
"lua",
"json",
"python"
-- "rust",
-- "go"
},
highlight = {
enable = true,
use_languagetree = true
}
}
end end
return M ts_config.setup {
ensure_installed = {
"javascript",
"html",
"css",
"bash",
"lua",
"json",
"python"
-- "rust",
-- "go"
},
highlight = {
enable = true,
use_languagetree = true
}
}

@ -1,81 +1,63 @@
-- plugins made by @Pocco81 =) -- plugins made by @Pocco81 =)
local M = {} local true_zen
if
M.config = function() not pcall(
local true_zen = require("true-zen") function()
true_zen = require "true-zen"
end
)
then
return
end
true_zen.setup( true_zen.setup(
{ {
misc = { misc = {
on_off_commands = false, on_off_commands = false,
ui_elements_commands = false, ui_elements_commands = false,
cursor_by_mode = false, cursor_by_mode = false,
before_minimalist_mode_shown = true, before_minimalist_mode_shown = true,
before_minimalist_mode_hidden = true, before_minimalist_mode_hidden = true,
after_minimalist_mode_shown = true, after_minimalist_mode_shown = true,
after_minimalist_mode_hidden = true after_minimalist_mode_hidden = true
}, },
ui = { ui = {
bottom = { bottom = {
laststatus = 0, laststatus = 0,
ruler = false, ruler = false,
showmode = false, showmode = false,
showcmd = false, showcmd = false,
cmdheight = 1 cmdheight = 1
},
top = {
showtabline = 0
},
left = {
number = false,
relativenumber = false,
signcolumn = "no"
}
}, },
modes = { top = {
ataraxis = { showtabline = 0
left_padding = 37,
right_padding = 37,
top_padding = 2,
bottom_padding = 2,
just_do_it_for_me = false,
ideal_writing_area_width = 0,
keep_default_fold_fillchars = true,
custome_bg = "#1e222a"
},
focus = {
margin_of_error = 5,
focus_method = "experimental"
}
}, },
integrations = { left = {
galaxyline = true, number = false,
nvim_bufferline = true relativenumber = false,
signcolumn = "no"
} }
} },
) modes = {
end ataraxis = {
left_padding = 37,
-- autosave.nvim plugin disabled by default right_padding = 37,
M.autoSave = function() top_padding = 2,
local autosave = require("autosave") bottom_padding = 2,
just_do_it_for_me = false,
autosave.setup( ideal_writing_area_width = 0,
{ keep_default_fold_fillchars = true,
enabled = vim.g.auto_save, -- takes boolean value from init.lua custome_bg = "#1e222a"
execution_message = "autosaved at : " .. vim.fn.strftime("%H:%M:%S"),
events = {"InsertLeave", "TextChanged"},
conditions = {
exists = true,
filetype_is_not = {},
modifiable = true
}, },
write_all_buffers = true, focus = {
on_off_commands = true, margin_of_error = 5,
clean_command_line_interval = 2500 focus_method = "experimental"
}
},
integrations = {
galaxyline = true,
nvim_bufferline = true
} }
) }
end )
return M

@ -0,0 +1,21 @@
-- colorscheme related stuff
vim.g.nvchad_theme = "onedark"
local base16
if
not pcall(
function()
base16 = require "base16"
end
)
then
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
vim.cmd("hi Normal guibg=" .. background)
return true
end

@ -1,17 +1,5 @@
local M = {} local M = {}
-- blankline config
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
-- hide line numbers , statusline in specific buffers! -- hide line numbers , statusline in specific buffers!
M.hideStuff = function() M.hideStuff = function()
vim.api.nvim_exec( vim.api.nvim_exec(

Loading…
Cancel
Save