-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
212 lines (189 loc) · 5.67 KB
/
init.lua
File metadata and controls
212 lines (189 loc) · 5.67 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
vim.o.termguicolors = true
vim.cmd('colorscheme rose-pine')
vim.g.scrollfix = 50
vim.g.mapleader = ' '
vim.o.smartindent = true
vim.o.cmdheight = 2
vim.o.updatetime = 150
vim.o.scrolloff = 9999
vim.o.signcolumn = 'yes'
vim.o.number = true
vim.o.relativenumber = true
vim.o.hlsearch = true
vim.o.wildmenu = true
vim.o.inccommand = 'nosplit'
vim.o.clipboard = 'unnamed'
vim.o.foldmethod = 'syntax'
vim.opt.path:append '**'
vim.api.nvim_set_keymap('i', 'kl', '<Esc>', { noremap = false, silent = true })
vim.api.nvim_set_keymap("", 'j', 'h', { noremap = true, silent = true })
vim.api.nvim_set_keymap("", 'k', 'j', { noremap = true, silent = true })
vim.api.nvim_set_keymap("", 'l', 'k', { noremap = true, silent = true })
vim.api.nvim_set_keymap("", ';', 'l', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<Leader>w', ':w<CR>', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<Leader>b', ':Buffers<CR>', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<Leader>f', ':GFiles<CR>', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<Leader>af', ':Files<CR>', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<Leader>s', ':Rg<CR>', { noremap = true, silent = true })
require('lualine').setup({
options = {
icons_enabled = false,
}
})
local cmp = require'cmp'
vim.api.nvim_create_autocmd('LspAttach', {
group = vim.api.nvim_create_augroup('UserLspConfig', {}),
callback = function(ev)
local opts = { buffer = ev.buf }
vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, opts)
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, opts)
vim.keymap.set('n', 'K', vim.lsp.buf.hover, opts)
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, opts)
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, opts)
vim.keymap.set('n', '<Leader>D', vim.lsp.buf.type_definition, opts)
vim.keymap.set('n', '<Leader>rn', vim.lsp.buf.rename, opts)
vim.keymap.set({ 'n', 'v' }, '<Leader>ca', vim.lsp.buf.code_action, opts)
vim.keymap.set('n', 'gr', vim.lsp.buf.references, opts)
vim.keymap.set("n", "<leader>d", function() vim.diagnostic.open_float() end, opts)
vim.keymap.set("n", "[d", vim.diagnostic.goto_next, opts)
vim.keymap.set("n", "]d", vim.diagnostic.goto_prev, opts)
vim.keymap.set("i", "<C-h>", vim.lsp.buf.signature_help, opts)
vim.keymap.set('n', '<Leader>F', function()
vim.lsp.buf.format { async = true }
end, opts)
end,
})
require'nvim-treesitter.configs'.setup {
highlight = {
enable = true,
},
indent = {
enable = true,
},
}
cmp.setup({
snippet = {
expand = function(args)
require('luasnip').lsp_expand(args.body) -- For `luasnip` users.
end,
},
mapping = cmp.mapping.preset.insert({
['<C-b>'] = cmp.mapping.scroll_docs(-4),
['<C-f>'] = cmp.mapping.scroll_docs(4),
['<C-Space>'] = cmp.mapping.complete(),
['<C-e>'] = cmp.mapping.abort(),
['<CR>'] = cmp.mapping.confirm({ select = true }),
}),
sources = cmp.config.sources({
{ name = 'copilot' },
{ name = 'nvim_lsp' },
}, {
{ name = 'buffer' },
})
})
cmp.setup.cmdline({ '/', '?' }, {
mapping = cmp.mapping.preset.cmdline(),
sources = {
{ name = 'buffer' }
}
})
cmp.setup.cmdline('!', {
mapping = cmp.mapping.preset.cmdline(),
sources = {
{ name = 'path' }
}
})
cmp.setup.cmdline(':', {
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources({
{ name = 'path' }
}, {
{ name = 'cmdline' }
})
})
vim.lsp.enable('ts_ls')
vim.lsp.config('nixd', {
settings = {
nixd = {
formatting = {
command = { "nixfmt" },
},
},
},
})
vim.lsp.enable('elixirls')
vim.lsp.config('elixirls', {
cmd = { "elixir-ls" };
})
vim.lsp.enable('tailwindcss')
vim.lsp.config('tailwindcss', {
settings = {
tailwindCSS = {
experimental = {
configFile = os.getenv("TAILWINDCSS_CONFIG_PATH") or "tailwind.config.js"
},
},
},
})
-- Formatting
local djlint = require('efmls-configs.linters.djlint')
local eslint = require('efmls-configs.linters.eslint')
local prettier = require('efmls-configs.formatters.prettier')
local black = require('efmls-configs.formatters.black')
local fixjson = require('efmls-configs.formatters.fixjson')
local fs = require('efmls-configs.fs')
local djlintFormat = {
formatCommand = string.format(
"%s --quiet --reformat -",
fs.executable('djlint')
),
formatCanRange = false,
formatStdin = true,
}
local languages = {
typescript = { eslint, prettier },
typescriptreact = { eslint, prettier },
javascript = { eslint, prettier },
javascriptreact = { eslint, prettier },
python = { black },
htmldjango = { djlint, djlintFormat },
json = { fixjson },
}
local efmls_config = {
filetypes = vim.tbl_keys(languages),
settings = {
rootMarkers = { '.git/' },
languages = languages,
},
init_options = {
documentFormatting = true,
documentRangeFormatting = true,
},
}
vim.lsp.config('efm', {
vim.tbl_extend('force', efmls_config, {
on_attach = on_attach,
capabilities = capabilities,
})
})
local function is_macos_dark_mode()
-- Check if on macOS
local is_mac = vim.fn.has('mac') == 1
if not is_mac then
return false -- Default to light on non-macOS systems
end
-- Use system command to check macOS appearance
local handle = io.popen('defaults read -g AppleInterfaceStyle 2>/dev/null')
if handle then
local result = handle:read("*a")
handle:close()
return result:match("Dark") ~= nil
end
return false -- Default to light if we can't determine
end
-- Set background based on macOS appearance
if is_macos_dark_mode() then
vim.opt.background = "dark"
else
vim.opt.background = "light"
end