Compare commits

..

No commits in common. "0ae1961a6b6f984212c4ce75359a53d3bdc49738" and "57ee7bb2fd1b9724c25cca7d4cc202b6014708a0" have entirely different histories.

3 changed files with 13 additions and 2 deletions

View File

@ -37,6 +37,17 @@ use {
} }
end end
}; };
{
'chentoast/marks.nvim';
config = function()
require'marks'.setup {
sign_priority = { lower=10, upper=15, builtin=8, bookmark=20 },
excluded_filetypes = {},
excluded_buftypes = {},
mappings = {}
}
end
};
'folke/twilight.nvim'; 'folke/twilight.nvim';
'leafo/moonscript-vim'; 'leafo/moonscript-vim';
'neovim/nvim-lspconfig'; 'neovim/nvim-lspconfig';

View File

@ -1,7 +1,7 @@
return function() return function()
require('neo-tree').setup { require('neo-tree').setup {
window = { window = {
position = "left"; position = "right";
width = 25; width = 25;
}; };
filesystem = { filesystem = {

View File

@ -2,7 +2,7 @@ return function()
vim.keymap.set("n", "<leader>o", "<cmd>OutlineOpen<CR><cmd>OutlineFocus<CR>", { desc = "Toggle Outline" }) vim.keymap.set("n", "<leader>o", "<cmd>OutlineOpen<CR><cmd>OutlineFocus<CR>", { desc = "Toggle Outline" })
require("outline").setup { require("outline").setup {
outline_window = { outline_window = {
position = "right"; position = "left";
width = 20; width = 20;
relative_width = false; relative_width = false;
}; };