Compare commits
No commits in common. "0ae1961a6b6f984212c4ce75359a53d3bdc49738" and "57ee7bb2fd1b9724c25cca7d4cc202b6014708a0" have entirely different histories.
0ae1961a6b
...
57ee7bb2fd
3 changed files with 13 additions and 2 deletions
|
@ -37,6 +37,17 @@ 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';
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
return function()
|
||||
require('neo-tree').setup {
|
||||
window = {
|
||||
position = "left";
|
||||
position = "right";
|
||||
width = 25;
|
||||
};
|
||||
filesystem = {
|
||||
|
|
|
@ -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 = "right";
|
||||
position = "left";
|
||||
width = 20;
|
||||
relative_width = false;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue