The never ending clean.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
-- ------------------------------------------------------------
|
||||
-- BUILD SYSTEM
|
||||
-- ------------------------------------------------------------
|
||||
local function build(args)
|
||||
if vim.fn.filereadable("build.sh") == 0 then
|
||||
vim.notify("No build.sh found in current directory.", vim.log.levels.WARN)
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
-- ------------------------------------------------------------
|
||||
-- TERMINAL SYSTEM
|
||||
-- ------------------------------------------------------------
|
||||
local term_buf = nil
|
||||
|
||||
local function open_term_split()
|
||||
|
||||
@@ -6,12 +6,12 @@ vim.pack.add({
|
||||
{ src = 'https://github.com/romus204/tree-sitter-manager.nvim' },
|
||||
{ src = 'https://github.com/lukas-reineke/indent-blankline.nvim' },
|
||||
{ src = 'hIdentlinesttps://github.com/xiyaowong/transparent.nvim' },
|
||||
{ src = 'https://github.com/nvim-lua/plenary.nvim' },
|
||||
{ src = 'https://github.com/kvrohit/rasmus.nvim' },
|
||||
{ src = 'https://github.com/stevearc/oil.nvim' },
|
||||
{ src = 'https://github.com/Mofiqul/vscode.nvim.git' },
|
||||
})
|
||||
|
||||
-- Colorscheme
|
||||
vim.cmd [[colorscheme rasmus]]
|
||||
vim.cmd [[colorscheme vscode]]
|
||||
|
||||
-- Treesitter
|
||||
require("tree-sitter-manager").setup()
|
||||
@@ -27,6 +27,22 @@ require("ibl").setup({
|
||||
},
|
||||
})
|
||||
|
||||
-- File explorer
|
||||
require("oil").setup({
|
||||
default_file_explorer = true,
|
||||
columns = { "icon" },
|
||||
view_options = {
|
||||
show_hidden = true,
|
||||
},
|
||||
keymaps = {
|
||||
["<CR>"] = "actions.select",
|
||||
["-"] = "actions.parent",
|
||||
["_"] = "actions.open_cwd",
|
||||
["q"] = "actions.close",
|
||||
},
|
||||
})
|
||||
map("n", "<C-e>", "<Cmd>Oil<CR>")
|
||||
|
||||
-- Fuzzy Finders
|
||||
require("fzf-lua").setup({})
|
||||
map("n", "<C-p>", "<Cmd>FzfLua files<CR>")
|
||||
|
||||
Reference in New Issue
Block a user