Compare commits

...

2 Commits

Author SHA1 Message Date
Talia 0ae1961a6b Remove vim marks package 2024-02-29 13:58:31 +01:00
Talia 915ce7827b Revert nvim file tree and outline sides 2024-02-29 13:58:31 +01:00
3 changed files with 2 additions and 13 deletions

View File

@ -37,17 +37,6 @@ use {
}
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';
'leafo/moonscript-vim';
'neovim/nvim-lspconfig';

View File

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

View File

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