-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
39 lines (39 loc) · 1004 Bytes
/
init.lua
File metadata and controls
39 lines (39 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require("config.options")
require("config.keybinds")
require("manage").setup()
require("config.noice")
require("mason").setup()
require("mason-lspconfig").setup() -- adapte le chemin selon ta structure
require("config.lsp")
require("Comment").setup()
require("presence").setup({
auto_update = true,
neovim_image_text = "Neovim",
main_image = "neovim",
editing_text = "Editing %s",
workspace_text = "Working on %s",
file_explorer_text = "Browsing files",
git_commit_text = "Committing changes",
})
require("bufferline").setup({
options = {
mode = "buffers",
separator_style = "slant",
show_close_icon = false,
show_buffer_close_icons = true,
diagnostics = "nvim_lsp",
},
})
require('onedark').setup({
style = 'deep'
})
require('onedark').load()
require("toggleterm").setup({
open_mapping = [[<c-\>]],
direction = "horizontal",
size = 15,
hide_numbers = true,
shade_terminals = false,
persist_mode = false,
shell = "wsl.exe",
})